warn about mismatching cycle counts for gambatte

This commit is contained in:
feos 2020-02-08 20:02:00 +03:00
parent f43d7c5b1b
commit 8b59754349
1 changed files with 11 additions and 0 deletions

View File

@ -153,6 +153,17 @@ namespace BizHawk.Client.Common
private void HandlePlaybackEnd()
{
var gambatteName = ((CoreAttribute)Attribute.GetCustomAttribute(typeof(Gameboy), typeof(CoreAttribute))).CoreName;
if (Movie.Core == gambatteName)
{
var movieCycles = Convert.ToUInt64(Movie.HeaderEntries[HeaderKeys.CYCLECOUNT]);
var coreCycles = (Global.Emulator as Gameboy).CycleCount;
if (movieCycles != (ulong)coreCycles)
{
PopupMessage($"Cycle count in the movie ({movieCycles}) doesn't match the emulated value ({coreCycles}).");
}
}
// TODO: mainform callback to update on mode change
switch (Global.Config.MovieEndAction)
{