GBHawk: put CGB flag into bk2 for proper parsing

This commit is contained in:
alyosha-tas 2020-02-07 07:40:33 -05:00
parent 0b6210efb3
commit 75ead6e3c4
1 changed files with 6 additions and 0 deletions

View File

@ -4,6 +4,7 @@ using System.Linq;
using BizHawk.Emulation.Common;
using BizHawk.Emulation.Cores.Nintendo.Gameboy;
using BizHawk.Emulation.Cores.Nintendo.GBHawk;
using BizHawk.Emulation.Cores.Nintendo.SubNESHawk;
using BizHawk.Emulation.Cores.Sega.MasterSystem;
using BizHawk.Emulation.Common.IEmulatorExtensions;
@ -330,6 +331,11 @@ namespace BizHawk.Client.Common.MovieConversionExtensions
}
}
if (Global.Emulator is GBHawk && ((GBHawk)Global.Emulator).is_GBC)
{
movie.HeaderEntries.Add("IsCGBMode", "1");
}
if (Global.Emulator is Gameboy && ((Gameboy) Global.Emulator).IsCGBMode())
{
movie.HeaderEntries.Add("IsCGBMode", "1");