[jak2] Fix unicode issue with GAME.CGO load (#3254)

Fix for https://github.com/open-goal/jak-project/issues/3244
This commit is contained in:
water111
2023-12-09 18:11:24 -05:00
committed by GitHub
parent 168afa0e2e
commit f17427bc26
19 changed files with 116 additions and 115 deletions
+1 -1
View File
@@ -235,7 +235,7 @@ void ee_runner(SystemThreadInterface& iface) {
void ee_worker_runner(SystemThreadInterface& iface) {
iface.initialization_complete();
while (!iface.get_want_exit()) {
const auto queues_weres_empty = g_background_worker.process_queues();
const auto queues_weres_empty = !g_background_worker.process_queues();
if (queues_weres_empty) {
std::this_thread::sleep_for(std::chrono::milliseconds(50));
}