Skip to content

Commit

Permalink
Fixed utils compilation after 5f33228
Browse files Browse the repository at this point in the history
  • Loading branch information
Xottab-DUTY committed Sep 23, 2018
1 parent b91372a commit 56647fa
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/utils/ETools/ETools.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ BOOL APIENTRY DllMain(HANDLE hModule, DWORD fdwReason, LPVOID lpReserved)
switch (fdwReason)
{
case DLL_PROCESS_ATTACH:
//xrDebug::Initialize(false);
//xrDebug::Initialize();
//Core.Initialize("XRayEditorTools", 0, FALSE);
// FPU::m64r ();
break;
Expand Down
2 changes: 1 addition & 1 deletion src/utils/xrAI/xrAI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ void Startup(LPSTR lpCmdLine)

int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
xrDebug::Initialize(false);
xrDebug::Initialize();
Core.Initialize("xrAI");

Startup(lpCmdLine);
Expand Down
2 changes: 1 addition & 1 deletion src/utils/xrCompress/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ extern int ProcessDifference();

int __cdecl main(int argc, char* argv[])
{
xrDebug::Initialize(false);
xrDebug::Initialize();
Core.Initialize("xrCompress", 0, FALSE);
printf("\n\n");

Expand Down
2 changes: 1 addition & 1 deletion src/utils/xrDO_Light/xrDO_Light.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ void Startup(LPSTR lpCmdLine)

int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
xrDebug::Initialize(false);
xrDebug::Initialize();
Core.Initialize("xrDO");

Startup(lpCmdLine);
Expand Down
2 changes: 1 addition & 1 deletion src/utils/xrLC/xrLC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ void Startup(LPSTR lpCmdLine)
int APIENTRY WinMain(HINSTANCE hInst, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
// Initialize debugging
xrDebug::Initialize(false);
xrDebug::Initialize();
Core.Initialize("xrLC");

if (strstr(Core.Params, "-nosmg"))
Expand Down
2 changes: 1 addition & 1 deletion src/utils/xrSE_Factory/xrSE_Factory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ BOOL APIENTRY DllMain(HANDLE module_handle, DWORD call_reason, LPVOID reserved)
{
case DLL_PROCESS_ATTACH:
{
//xrDebug::Initialize(false);
//xrDebug::Initialize();
//Core.Initialize("xrSE_Factory", nullptr, true, "fsfactory.ltx");
string_path SYSTEM_LTX;
FS.update_path(SYSTEM_LTX, "$game_config$", "system.ltx");
Expand Down

0 comments on commit 56647fa

Please sign in to comment.