GBHawk: put CGB flag into bk2 for proper parsing
This commit is contained in:
parent
0b6210efb3
commit
75ead6e3c4
|
@ -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");
|
||||
|
|
Loading…
Reference in New Issue