Skip to content

Commit 56647fa

Browse files
committed
Fixed utils compilation after 5f33228
1 parent b91372a commit 56647fa

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/utils/ETools/ETools.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ BOOL APIENTRY DllMain(HANDLE hModule, DWORD fdwReason, LPVOID lpReserved)
1010
switch (fdwReason)
1111
{
1212
case DLL_PROCESS_ATTACH:
13-
//xrDebug::Initialize(false);
13+
//xrDebug::Initialize();
1414
//Core.Initialize("XRayEditorTools", 0, FALSE);
1515
// FPU::m64r ();
1616
break;

src/utils/xrAI/xrAI.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ void Startup(LPSTR lpCmdLine)
162162

163163
int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
164164
{
165-
xrDebug::Initialize(false);
165+
xrDebug::Initialize();
166166
Core.Initialize("xrAI");
167167

168168
Startup(lpCmdLine);

src/utils/xrCompress/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ extern int ProcessDifference();
77

88
int __cdecl main(int argc, char* argv[])
99
{
10-
xrDebug::Initialize(false);
10+
xrDebug::Initialize();
1111
Core.Initialize("xrCompress", 0, FALSE);
1212
printf("\n\n");
1313

src/utils/xrDO_Light/xrDO_Light.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ void Startup(LPSTR lpCmdLine)
5555

5656
int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
5757
{
58-
xrDebug::Initialize(false);
58+
xrDebug::Initialize();
5959
Core.Initialize("xrDO");
6060

6161
Startup(lpCmdLine);

src/utils/xrLC/xrLC.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ void Startup(LPSTR lpCmdLine)
131131
int APIENTRY WinMain(HINSTANCE hInst, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
132132
{
133133
// Initialize debugging
134-
xrDebug::Initialize(false);
134+
xrDebug::Initialize();
135135
Core.Initialize("xrLC");
136136

137137
if (strstr(Core.Params, "-nosmg"))

src/utils/xrSE_Factory/xrSE_Factory.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ BOOL APIENTRY DllMain(HANDLE module_handle, DWORD call_reason, LPVOID reserved)
3838
{
3939
case DLL_PROCESS_ATTACH:
4040
{
41-
//xrDebug::Initialize(false);
41+
//xrDebug::Initialize();
4242
//Core.Initialize("xrSE_Factory", nullptr, true, "fsfactory.ltx");
4343
string_path SYSTEM_LTX;
4444
FS.update_path(SYSTEM_LTX, "$game_config$", "system.ltx");

0 commit comments

Comments
 (0)