mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-31 10:09:46 -06:00
Add option to hide mouse on inactivity (#955)
Also allow user to specify how long to wait before hiding
This commit is contained in:
@ -77,6 +77,9 @@ char RecentROMList[10][1024];
|
||||
|
||||
int EnableCheats;
|
||||
|
||||
int MouseHide;
|
||||
int MouseHideSeconds;
|
||||
|
||||
bool EnableJIT;
|
||||
|
||||
ConfigEntry PlatformConfigFile[] =
|
||||
@ -185,6 +188,9 @@ ConfigEntry PlatformConfigFile[] =
|
||||
|
||||
{"EnableCheats", 0, &EnableCheats, 0, NULL, 0},
|
||||
|
||||
{"MouseHide", 0, &MouseHide, 0, NULL, 0},
|
||||
{"MouseHideSeconds", 0, &MouseHideSeconds, 5, NULL, 0},
|
||||
|
||||
{"", -1, NULL, 0, NULL, 0}
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user