diff options
| author | Jeremy Rimpo <jeremy.rimpo@servermonkey.com> | 2026-05-06 11:08:57 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-06 11:08:57 -0500 |
| commit | 6d02ef2b751bd55d2a2718c2b31cec1c0ce55479 (patch) | |
| tree | d5f967617c3e36f051447bf6ec54369b0fb311d5 /src/shared/appconfig.inc | |
| parent | f5d89ad6250343acddbcd5541fb6e7b7df4f27d2 (diff) | |
Defer second nxmhandler call (#2390)
- Calls run in parallel leading to extraneous setup dialogs
- This only calls the nxm schema registration after modl is done
Diffstat (limited to 'src/shared/appconfig.inc')
| -rw-r--r-- | src/shared/appconfig.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/appconfig.inc b/src/shared/appconfig.inc index 9058bf18..b3946774 100644 --- a/src/shared/appconfig.inc +++ b/src/shared/appconfig.inc @@ -19,7 +19,7 @@ APPPARAM(std::wstring, proxyDLLSource, L"proxy.dll") APPPARAM(std::wstring, vfs32DLLName, L"usvfs_x86.dll")
APPPARAM(std::wstring, vfs64DLLName, L"usvfs_x64.dll")
APPPARAM(std::wstring, nxmHandlerExe, L"nxmhandler.exe")
-APPPARAM(std::wstring, nxmHandlerIni, L"nxmhandler.ini")
+APPPARAM(std::wstring, nxmHandlerIni, L"downloadhandler.ini")
APPPARAM(std::wstring, portableLockFileName, L"portable.txt")
APPPARAM(const wchar_t*, localSavePlaceholder, L"__MOProfileSave__\\")
|
