Android project - Fixed game delay

This commit is contained in:
k2154
2025-08-14 02:12:27 +09:00
parent 27c88458f3
commit cb2b57db27
+3 -1
View File
@@ -522,7 +522,9 @@ public:
}
// Wait flush
std::thread t([]() {});
std::thread t([]() {
std::this_thread::sleep_for(std::chrono::microseconds(2));
});
t.detach();
}