Merge branch 'main' into linux-overlay

This commit is contained in:
Tom Lally 2022-09-02 15:24:04 +01:00
commit 1b88a5d149

View file

@ -1176,7 +1176,14 @@ void MainWindow::ShowCursor(bool state)
} while (counter >= 0); } while (counter >= 0);
} }
#else #else
cemuLog_log(LogType::Force, "MainWindow::ShowCursor - todo"); if (state)
{
wxSetCursor(wxNullCursor); // restore system default cursor
}
else
{
wxSetCursor(wxCursor(wxCURSOR_BLANK));
}
#endif #endif
} }