From 3dec9e2e0158419a74d61543825ffcd22d19067c Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Sat, 15 Jun 2019 02:01:10 +1000 Subject: [PATCH] Fix missing helper method --- BizHawk.Emulation.Cores/Consoles/Fairchild/ChannelF/F8/F3850.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Fairchild/ChannelF/F8/F3850.cs b/BizHawk.Emulation.Cores/Consoles/Fairchild/ChannelF/F8/F3850.cs index 1532d09ba0..fe3d423af3 100644 --- a/BizHawk.Emulation.Cores/Consoles/Fairchild/ChannelF/F8/F3850.cs +++ b/BizHawk.Emulation.Cores/Consoles/Fairchild/ChannelF/F8/F3850.cs @@ -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 += " ";