mirror of https://github.com/PCSX2/pcsx2.git
Made the installer create a cheats directory as per request.
Remove the sVU is broken warning, since it's been functionally restored. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3855 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
7ad0ef4fb4
commit
fd0647cc02
|
@ -36,6 +36,11 @@
|
|||
|
||||
!insertmacro UNINSTALL.LOG_CLOSE_INSTALL
|
||||
|
||||
SetOutPath "$INSTDIR\Cheats"
|
||||
!insertmacro UNINSTALL.LOG_OPEN_INSTALL
|
||||
File ..\bin\Cheats\*
|
||||
!insertmacro UNINSTALL.LOG_CLOSE_INSTALL
|
||||
|
||||
SetOutPath "$INSTDIR\Docs"
|
||||
!insertmacro UNINSTALL.LOG_OPEN_INSTALL
|
||||
File ..\bin\docs\*
|
||||
|
|
|
@ -19,6 +19,7 @@ Section "Un.Exes and Plugins ${APP_NAME}"
|
|||
!insertmacro UNINSTALL.LOG_UNINSTALL "$INSTDIR\Langs"
|
||||
!insertmacro UNINSTALL.LOG_UNINSTALL "$INSTDIR\Plugins"
|
||||
!insertmacro UNINSTALL.LOG_UNINSTALL "$INSTDIR\Docs"
|
||||
!insertmacro UNINSTALL.LOG_UNINSTALL "$INSTDIR\Cheats"
|
||||
|
||||
SectionEnd
|
||||
|
||||
|
|
|
@ -110,6 +110,9 @@ Function un.onUninstSuccess
|
|||
|
||||
StrCpy $0 "$INSTDIR\docs"
|
||||
Call un.DeleteDirIfEmpty
|
||||
|
||||
StrCpy $0 "$INSTDIR\Cheats"
|
||||
Call un.DeleteDirIfEmpty
|
||||
|
||||
StrCpy $0 "$INSTDIR"
|
||||
Call un.DeleteDirIfEmpty
|
||||
|
|
|
@ -190,7 +190,7 @@ Panels::CpuPanelVU::CpuPanelVU( wxWindow* parent )
|
|||
RadioPanelItem(_("microVU Recompiler"))
|
||||
.SetToolTip(_("New Vector Unit recompiler with much improved compatibility. Recommended.")),
|
||||
|
||||
RadioPanelItem(_("superVU Recompiler [legacy, broken]"))
|
||||
RadioPanelItem(_("superVU Recompiler [legacy]"))
|
||||
.SetToolTip(_("Useful for diagnosing bugs or clamping issues in the new mVU recompiler."))
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue