A7800Hawk: clearer loading messages

This commit is contained in:
alyosha-tas 2017-07-23 10:23:12 -04:00 committed by GitHub
parent e872fbb7da
commit edddf8cec0
1 changed files with 3 additions and 1 deletions

View File

@ -88,7 +88,7 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk
if (rom.Length % 1024 == 128)
{
Console.WriteLine("Trimming 128 byte .a78 header...");
Console.WriteLine("128 byte header detected");
byte[] newrom = new byte[rom.Length - 128];
is_header = true;
Buffer.BlockCopy(rom, 0, header, 0, 128);
@ -151,6 +151,8 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk
}
else if (is_header)
{
Console.WriteLine("ROM not in DB, inferring mapper info from header");
byte cart_1 = header[0x35];
byte cart_2 = header[0x36];