Skip to content
Snippets Groups Projects
Commit fa6a7949 authored by Ehret's avatar Ehret
Browse files

minor fix for automatic VAServer starting

parent 31f4cef2
No related branches found
No related tags found
No related merge requests found
......@@ -515,7 +515,7 @@ bool FVAPlugin::StartVAServerLauncher()
FString LauncherScript = TEXT("VirtualAcousticsStarterServer.py");
if (FPaths::FileExists(FPaths::Combine(LauncherScriptDir, LauncherScript)))
{
FString command = "cd "+ LauncherScriptDir+" & start py " + LauncherScript;
FString command = "cd/d "+ LauncherScriptDir+" & start py " + LauncherScript;
system(TCHAR_TO_ANSI(*command));
return true;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment