When loading a movie, look for a movie/rom hash mismatch and add an OSD message

This commit is contained in:
adelikat 2015-07-19 16:40:55 -04:00
parent 2e208cca4e
commit 2f6265fc9d
1 changed files with 6 additions and 0 deletions

View File

@ -90,6 +90,12 @@ namespace BizHawk.Client.EmuHawk
GlobalWin.Tools.Restart<VirtualpadTool>();
GlobalWin.DisplayManager.NeedsToPaint = true;
if (Global.MovieSession.Movie.Hash != Global.Game.Hash)
{
GlobalWin.OSD.AddMessage("Warning: Movie hash does not match the ROM");
}
return true;
}