diff --git a/Build_Install.md b/Build_Install.md index 588c223..1d5a987 100644 --- a/Build_Install.md +++ b/Build_Install.md @@ -30,7 +30,5 @@ Afterwards create your shortcuts with GloSC and you are ready to go. ### Notes: -The SteamTarget checks for the Injector, as well as the hooking dll, one directory up. - The GloSC_GameLauncher must be running from that directory, as Admin, to make double sure Steam does get unhooked after closing a shortcut diff --git a/SteamTarget/SteamTargetRenderer.cpp b/SteamTarget/SteamTargetRenderer.cpp index ea00089..950bf98 100644 --- a/SteamTarget/SteamTargetRenderer.cpp +++ b/SteamTarget/SteamTargetRenderer.cpp @@ -384,7 +384,7 @@ void SteamTargetRenderer::unhookBindings() QProcess proc; proc.setNativeArguments(" --eject "); proc.setWorkingDirectory(dir); - proc.start("..\\Injector.exe", QIODevice::ReadOnly); + proc.start("./Injector.exe", QIODevice::ReadOnly); proc.waitForStarted(); proc.waitForFinished(); }