Fix missing helper method

This commit is contained in:
YoshiRulz 2019-06-15 02:01:10 +10:00
parent 63f6be07fe
commit 3dec9e2e01
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 1 deletions

View File

@ -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 += " ";