diff --git a/src/archutils/Win32/GraphicsWindow.cpp b/src/archutils/Win32/GraphicsWindow.cpp index 7b428f367c..be2f01c78b 100644 --- a/src/archutils/Win32/GraphicsWindow.cpp +++ b/src/archutils/Win32/GraphicsWindow.cpp @@ -111,7 +111,8 @@ static LRESULT CALLBACK GraphicsWindow_WndProc( HWND hWnd, UINT msg, WPARAM wPar case WM_SETCURSOR: if( !g_CurrentParams.windowed ) { - SetCursor(nullptr); + //Don't hide the cursor when full screened since we have ShowMouseCursor as an option. + //SetCursor(nullptr); return 1; } break;