aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorp0358 <p0358@users.noreply.github.com>2022-09-19 01:56:21 +0200
committerGeckoEidechse <gecko.eidechse+git@pm.me>2022-09-20 00:07:12 +0200
commit212f50df366d35fa91cc78be3451c7836c9b3faa (patch)
tree2175ad2596a983e054d97534bad9f03e00b26a7a
parente7325406e1e8a4f42da094ba1c1256d7c9c2fbcb (diff)
downloadNorthstarLauncher-212f50df366d35fa91cc78be3451c7836c9b3faa.tar.gz
NorthstarLauncher-212f50df366d35fa91cc78be3451c7836c9b3faa.zip
Set current directory properly (#275)v1.9.7-rc2
-rw-r--r--NorthstarLauncher/main.cpp2
-rw-r--r--loader_launcher_proxy/dllmain.cpp2
-rw-r--r--loader_wsock32_proxy/dllmain.cpp2
3 files changed, 6 insertions, 0 deletions
diff --git a/NorthstarLauncher/main.cpp b/NorthstarLauncher/main.cpp
index 078cbc4a..92c7de7a 100644
--- a/NorthstarLauncher/main.cpp
+++ b/NorthstarLauncher/main.cpp
@@ -334,6 +334,8 @@ int main(int argc, char* argv[])
return 1;
}
+ SetCurrentDirectoryW(exePath);
+
bool noOriginStartup = false;
bool dedicated = false;
bool nostubs = false;
diff --git a/loader_launcher_proxy/dllmain.cpp b/loader_launcher_proxy/dllmain.cpp
index a382bc97..06abb7b2 100644
--- a/loader_launcher_proxy/dllmain.cpp
+++ b/loader_launcher_proxy/dllmain.cpp
@@ -128,6 +128,8 @@ extern "C" __declspec(dllexport) int LauncherMain(HINSTANCE hInstance, HINSTANCE
return 1;
}
+ SetCurrentDirectoryW(exePath);
+
bool loadNorthstar = ShouldLoadNorthstar();
if (loadNorthstar)
diff --git a/loader_wsock32_proxy/dllmain.cpp b/loader_wsock32_proxy/dllmain.cpp
index 7feb278d..c5610042 100644
--- a/loader_wsock32_proxy/dllmain.cpp
+++ b/loader_wsock32_proxy/dllmain.cpp
@@ -39,6 +39,8 @@ BOOL WINAPI DllMain(HINSTANCE hInst, DWORD reason, LPVOID)
return true;
}
+ SetCurrentDirectoryW(exePath);
+
if (!ProvisionNorthstar()) // does not call InitialiseNorthstar yet, will do it on LauncherMain hook
return true;