Synchronize Linux build. (PR #1037)

. remove OutputDebugStringA()
. push changes to StdAfx.h
. mention g_strSaveStatePathname in the error message for loading save-state
This commit is contained in:
Andrea
2022-02-14 20:37:18 +00:00
committed by GitHub
parent 9a3832084a
commit 48dd638d33
8 changed files with 32 additions and 10 deletions
+1 -1
View File
@@ -93,7 +93,7 @@ void LogOutput(const char* format, ...)
va_list args;
va_start(args, format);
OutputDebugStringA(StrFormat(format, args).c_str());
OutputDebugString(StrFormat(format, args).c_str());
va_end(args);
}