ZXHawk: Remove left over debug stuff

This commit is contained in:
Matt Burgess 2021-06-12 10:22:59 +01:00
parent 51a67a947a
commit d8ccd4017a
1 changed files with 3 additions and 0 deletions

View File

@ -121,6 +121,8 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
// add to datacorder // add to datacorder
_datacorder.DataBlocks.Add(t); _datacorder.DataBlocks.Add(t);
/* debug stuff
StringBuilder export = new StringBuilder(); StringBuilder export = new StringBuilder();
foreach (var b in _datacorder.DataBlocks) foreach (var b in _datacorder.DataBlocks)
{ {
@ -133,6 +135,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
} }
string o = export.ToString(); string o = export.ToString();
*/
} }
} }
} }