UI: Fixed mouse disappearing when playing NSF files

This commit is contained in:
Souryo 2017-08-08 23:13:04 -04:00
parent 4652dbc428
commit 4b41148545

View File

@ -83,10 +83,12 @@ namespace Mesen.GUI
_tmrHideMouse.Stop();
if(!CursorManager.NeedMouseIcon) {
//Only hide mouse if no zapper (otherwise this could be pretty annoying)
ctrl.Cursor = Cursors.Default;
//Only hide mouse if no zapper (otherwise this could be pretty annoying)
_tmrHideMouse.Start();
if(InteropEmu.IsRunning() && !InteropEmu.IsPaused()) {
_tmrHideMouse.Start();
}
}
}