When loading a movie, look for a movie/rom hash mismatch and add an OSD message
This commit is contained in:
parent
2e208cca4e
commit
2f6265fc9d
|
@ -90,6 +90,12 @@ namespace BizHawk.Client.EmuHawk
|
||||||
GlobalWin.Tools.Restart<VirtualpadTool>();
|
GlobalWin.Tools.Restart<VirtualpadTool>();
|
||||||
GlobalWin.DisplayManager.NeedsToPaint = true;
|
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;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue