Skip to content

Commit bd8feac

Browse files
committed
Remove newline sequence for WriteDebugEvent from last commit
1 parent d7e4f03 commit bd8feac

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Client/loader/MainFunctions.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1144,7 +1144,7 @@ int LaunchGame(SString strCmdLine)
11441144
}
11451145

11461146
WriteDebugEvent(SString("Loader - Process created: %s %s", *strGTAEXEPath, *GetApplicationSetting("serial")));
1147-
WriteDebugEvent(SString("Loader - Process ID: %lu, Thread ID: %lu\n", piLoadee.dwProcessId, piLoadee.dwThreadId));
1147+
WriteDebugEvent(SString("Loader - Process ID: %lu, Thread ID: %lu", piLoadee.dwProcessId, piLoadee.dwThreadId));
11481148

11491149
// Inject the core into GTA
11501150
SetDllDirectory(strMtaDir);

Shared/sdk/SharedUtil.Misc.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1325,7 +1325,7 @@ bool SharedUtil::IsMainThread()
13251325

13261326
#ifdef MTA_CLIENT
13271327
if (mainThreadID != currentThreadID)
1328-
WriteDebugEvent(SString("IsMainThread() - Main: %lu, Current: %lu\n", mainThreadID, currentThreadID));
1328+
WriteDebugEvent(SString("IsMainThread() - Main: %lu, Current: %lu", mainThreadID, currentThreadID));
13291329
#endif
13301330

13311331
return mainThreadID == currentThreadID;

0 commit comments

Comments
 (0)