mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-31 04:25:40 +00:00
(Android) The touch overlay setting is now always enabled after running the configurator
This commit is contained in:
parent
a68154bfa5
commit
720ca50cd0
|
@ -601,6 +601,12 @@ int main(int argc, char* argv[])
|
|||
|
||||
if (Utils::Platform::Android::checkConfigurationNeeded())
|
||||
exit(0);
|
||||
|
||||
// Always enable the touch overlay after running the configurator.
|
||||
if (!Settings::getInstance()->getBool("InputTouchOverlay")) {
|
||||
Settings::getInstance()->setBool("InputTouchOverlay", true);
|
||||
Settings::getInstance()->saveFile();
|
||||
}
|
||||
}
|
||||
|
||||
Utils::Platform::Android::setDataDirectories();
|
||||
|
|
Loading…
Reference in a new issue