diff --git a/packaging/windows/OpenRA.nsi b/packaging/windows/OpenRA.nsi index e43afab696..5b712ac215 100644 --- a/packaging/windows/OpenRA.nsi +++ b/packaging/windows/OpenRA.nsi @@ -121,9 +121,6 @@ Section "Editor" EDITOR SectionEnd SectionGroup /e "Settings" - Section "Portable Install" PORTABLE - CreateDirectory $INSTDIR\Support - SectionEnd Section "Desktop Shortcut" DESKTOPSHORTCUT SetOutPath "$INSTDIR" CreateShortCut "$DESKTOP\OpenRA.lnk" $INSTDIR\OpenRA.Game.exe "" \ @@ -131,10 +128,6 @@ SectionGroup /e "Settings" SectionEnd SectionGroupEnd -Function .onInit - SectionSetFlags ${PORTABLE} 0 -FunctionEnd - ;*************************** ;Dependency Sections ;*************************** @@ -242,13 +235,11 @@ SectionEnd ;*************************** LangString DESC_GAME ${LANG_ENGLISH} "OpenRA engine, official mods and dependencies" LangString DESC_EDITOR ${LANG_ENGLISH} "OpenRA map editor" -LangString DESC_PORTABLE ${LANG_ENGLISH} "Store support files in the install directory." LangString DESC_DESKTOPSHORTCUT ${LANG_ENGLISH} "Place shortcut on the Desktop." !insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN !insertmacro MUI_DESCRIPTION_TEXT ${GAME} $(DESC_GAME) !insertmacro MUI_DESCRIPTION_TEXT ${EDITOR} $(DESC_EDITOR) - !insertmacro MUI_DESCRIPTION_TEXT ${PORTABLE} $(DESC_PORTABLE) !insertmacro MUI_DESCRIPTION_TEXT ${DESKTOPSHORTCUT} $(DESC_DESKTOPSHORTCUT) !insertmacro MUI_FUNCTION_DESCRIPTION_END