mirror of https://github.com/snes9xgit/snes9x.git
win32: fix auto mouse cursor hide
This commit is contained in:
parent
dfe3925638
commit
3351c3b820
|
@ -1525,7 +1525,7 @@ bool WinMoviePlay(LPCTSTR filename)
|
|||
}
|
||||
romcheck_exit:
|
||||
|
||||
S9xMovieOpen (_tToChar(filename), GUI.MovieReadOnly);
|
||||
err = S9xMovieOpen (_tToChar(filename), GUI.MovieReadOnly);
|
||||
if(err != SUCCESS)
|
||||
{
|
||||
TCHAR* err_string = MOVIE_ERR_COULD_NOT_OPEN;
|
||||
|
@ -3617,7 +3617,7 @@ int WINAPI WinMain(
|
|||
{
|
||||
if (--GUI.CursorTimer == 0)
|
||||
{
|
||||
if(!Settings.SuperScopeMaster)
|
||||
if (GUI.ControllerOption != SNES_SUPERSCOPE && GUI.ControllerOption != SNES_JUSTIFIER && GUI.ControllerOption != SNES_JUSTIFIER_2)
|
||||
SetCursor (NULL);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue