mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-07 03:22:27 +02:00
Merge pull request #15910 from luiscuenca/WLdefaultScriptsOverride
DEV-166: Instrument the Windows Launcher to use the defaultScriptsOverride parameter
This commit is contained in:
commit
eb1cb3b11c
1 changed files with 3 additions and 2 deletions
|
@ -296,8 +296,9 @@ HWND LauncherManager::launchApplication() {
|
|||
LauncherManager::getAndCreatePaths(PathType::Interface_Directory, installDir);
|
||||
CString interfaceExe = installDir + _T("\\interface.exe");
|
||||
CString urlParam = _T("--url \"") + _domainURL + ("\" ");
|
||||
CString scriptsURL = installDir + _T("\\scripts\\simplifiedUI");
|
||||
CString scriptsParam = _T("--scripts \"") + scriptsURL + ("\" ");
|
||||
CString scriptsURL = installDir + _T("\\scripts\\simplifiedUIBootstrapper.js");
|
||||
scriptsURL.Replace(_T("\\"), _T("/"));
|
||||
CString scriptsParam = _T("--defaultScriptsOverride \"") + scriptsURL + ("\" ");
|
||||
CString cacheDir;
|
||||
LauncherManager::getAndCreatePaths(PathType::Content_Directory, cacheDir);
|
||||
CString cacheParam = _T("--cache \"") + cacheDir + ("\" ");
|
||||
|
|
Loading…
Reference in a new issue