clear the OSD before doing loadstate callbacks, fixes #635

This commit is contained in:
adelikat 2016-09-22 10:13:26 -04:00
parent 8de92d6876
commit 707c0944f0
1 changed files with 1 additions and 1 deletions

View File

@ -3729,6 +3729,7 @@ namespace BizHawk.Client.EmuHawk
if (SavestateManager.LoadStateFile(path, userFriendlyStateName))
{
GlobalWin.OSD.ClearGUIText();
ClientApi.OnStateLoaded(this, userFriendlyStateName);
if (GlobalWin.Tools.Has<LuaConsole>())
@ -3737,7 +3738,6 @@ namespace BizHawk.Client.EmuHawk
}
SetMainformMovieInfo();
GlobalWin.OSD.ClearGUIText();
GlobalWin.Tools.UpdateToolsBefore(fromLua);
UpdateToolsAfter(fromLua);
UpdateToolsLoadstate();