nsis: Remove remaining plugins (gsdx) and references.

This commit is contained in:
lightningterror 2021-05-14 21:28:11 +02:00 committed by Kojin
parent 06da3a1359
commit 94901f8be3
3 changed files with 3 additions and 9 deletions

View File

@ -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

View File

@ -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)."

View File

@ -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