From 47ac3d79bd53f2ee141b3043796123a42d12db5e Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 21 Feb 2016 14:10:12 -0500 Subject: [PATCH] GPGX tracing - a more reasonable spacing between disassembly and register values --- BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.ITraceable.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.ITraceable.cs b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.ITraceable.cs index e3538db7c0..f538b66f7b 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.ITraceable.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.ITraceable.cs @@ -54,7 +54,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx var disasm = Disassembler.Disassemble(MemoryDomains.SystemBus, pc, out length); // feos: we shouldn't append up to 64, but momem.l prints all the regs, while it could do like D0-A6 (as Gens-Tracer does it) - Buffer.Append(string.Format("{0:X6}: {1,-64}", pc, disasm)); + Buffer.Append(string.Format("{0:X6}: {1,-24}", pc, disasm)); foreach (var r in regs) {