This commit is contained in:
Henrik Rydgård
2025-08-31 13:37:59 +02:00
parent 5751e202a5
commit 3056e977cc
3 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -308,7 +308,7 @@ void Section::Set(std::string_view key, const std::vector<std::string>& newValue
temp += value + ",";
}
// remove last ,
if (temp.length())
if (!temp.empty())
temp.resize(temp.length() - 1);
Set(key, temp.c_str());
}
+1
View File
@@ -672,6 +672,7 @@ void NativeInit(int argc, const char *argv[], const char *savegame_dir, const ch
}
if (forceLogLevel) {
NOTICE_LOG(Log::System, "Setting log level to %d due to command line override", (int)logLevel);
g_logManager.SetAllLogLevels(logLevel);
}
-1
View File
@@ -1621,7 +1621,6 @@ extern "C" void JNICALL Java_org_ppsspp_ppsspp_NativeActivity_requestExitVulkanR
_assert_(g_renderLoopThread.joinable());
exitRenderLoop = true;
g_renderLoopThread.join();
_assert_(!g_renderLoopThread.joinable());
g_renderLoopThread = std::thread();
}