Fix serving the remote debugger locally, add a setting for the auto-launcher

This commit is contained in:
Henrik Rydgård
2025-08-24 11:17:19 +02:00
parent 7a93d0d56c
commit f6050a442c
9 changed files with 52 additions and 26 deletions
+1
View File
@@ -211,6 +211,7 @@ void AssertCurrentThreadName(const char *threadName) {
#ifdef TLS_SUPPORTED
if (strcmp(curThreadName, threadName) != 0) {
ERROR_LOG(Log::System, "Thread name assert failed: Expected %s, was %s", threadName, curThreadName);
_dbg_assert_msg_(false, "Thread name assert failed: Expected %s, was %s", threadName, curThreadName);
}
#endif
}