From 3351c3b8201b4229dbc71091ed67170fea93e5d8 Mon Sep 17 00:00:00 2001 From: OV2 Date: Mon, 5 Oct 2015 19:47:59 +0200 Subject: [PATCH] win32: fix auto mouse cursor hide --- win32/wsnes9x.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/win32/wsnes9x.cpp b/win32/wsnes9x.cpp index 36d990b5..97227258 100644 --- a/win32/wsnes9x.cpp +++ b/win32/wsnes9x.cpp @@ -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); } }