Fix missing helper method
This commit is contained in:
parent
63f6be07fe
commit
3dec9e2e01
|
@ -722,7 +722,7 @@ namespace BizHawk.Emulation.Cores.Consoles.ChannelF
|
|||
|
||||
for (ushort i = 0; i < bytes_read; i++)
|
||||
{
|
||||
byte_code += ReadMemory((ushort)(pc + i)).ToHexString(2);
|
||||
byte_code += ReadMemory((ushort)(pc + i)).ToString("X2");
|
||||
if (i < (bytes_read - 1))
|
||||
{
|
||||
byte_code += " ";
|
||||
|
|
Loading…
Reference in New Issue