diff --git a/nsis/SectionUninstaller.nsh b/nsis/SectionUninstaller.nsh index cf6088dd47..a045a1dc58 100644 --- a/nsis/SectionUninstaller.nsh +++ b/nsis/SectionUninstaller.nsh @@ -23,7 +23,7 @@ FunctionEnd ; ======================================================================= ; Un.Installer Sections ; ======================================================================= -Section "Un.Program and Plugins ${APP_NAME}" +Section "Un.Program ${APP_NAME}" SectionIn RO ; First thing, remove the registry entry in case uninstall doesn't complete successfully @@ -46,7 +46,6 @@ SectionIn RO Delete "$INSTDIR\PCSX2_keys.ini.default" Delete "$INSTDIR\pcsx2.exe" RMDir /r "$INSTDIR\Langs" - RMDir /r "$INSTDIR\Plugins" RMDir /r "$INSTDIR\Docs" RMDir /r "$INSTDIR\Shaders" @@ -60,7 +59,7 @@ SectionIn RO SectionEnd ; /o for optional and unticked by default -Section /o "Un.Configuration files (Programs and Plugins)" +Section /o "Un.Configuration files (Programs)" SetShellVarContext current RMDir /r "$DOCUMENTS\PCSX2\inis\" SectionEnd diff --git a/nsis/SharedCore.nsh b/nsis/SharedCore.nsh index 473ab27552..dd34c69825 100644 --- a/nsis/SharedCore.nsh +++ b/nsis/SharedCore.nsh @@ -41,7 +41,7 @@ SectionEnd !include "SharedShortcuts.nsh" -LangString DESC_CORE ${LANG_ENGLISH} "Core components (binaries, plugins, documentation, etc)." +LangString DESC_CORE ${LANG_ENGLISH} "Core components (binaries, documentation, etc)." LangString DESC_STARTMENU ${LANG_ENGLISH} "Adds shortcuts for PCSX2 to the start menu (all users)." LangString DESC_DESKTOP ${LANG_ENGLISH} "Adds a shortcut for PCSX2 to the desktop (all users)." diff --git a/nsis/pcsx2_shared_init.nsi b/nsis/pcsx2_shared_init.nsi index 751360e3fc..5a1cccc914 100644 --- a/nsis/pcsx2_shared_init.nsi +++ b/nsis/pcsx2_shared_init.nsi @@ -83,11 +83,6 @@ Function TempFilesOut File ..\bin\shaders\GSdx.fx File ..\bin\shaders\GSdx_FX_Settings.ini - SetOutPath "$TEMP\PCSX2 ${APP_VERSION}\Plugins" - File /nonfatal ..\bin\Plugins\gsdx32-sse2.dll - File /nonfatal ..\bin\Plugins\gsdx32-sse4.dll - File /nonfatal ..\bin\Plugins\gsdx32-avx2.dll - SetOutPath "$TEMP\PCSX2 ${APP_VERSION}\Langs" File /nonfatal /r ..\bin\Langs\*.mo FunctionEnd