ConfigMenu: Block reading input from other threads while the config menu is opened

This commit is contained in:
Maschell
2024-05-03 13:00:18 +02:00
parent 340fdddf0b
commit a8fd0b64ac
4 changed files with 15 additions and 1 deletions

View File

@@ -12,4 +12,6 @@ std::mutex gLoadedDataMutex;
std::map<std::string, OSDynLoad_Module> gUsedRPLs;
std::vector<void *> gAllocatedAddresses;
bool gNotificationModuleLoaded = false;
bool gNotificationModuleLoaded = false;
OSThread *gOnlyAcceptFromThread = nullptr;