Skip to content

Commit

Permalink
Installer: Revert the change from the previous commit which changed t…
Browse files Browse the repository at this point in the history
…he 32 Bit Program Files folder to be called "Dolphin" instead of "Dolphin x86".

Apparently it's not easily possible to install 32 and 64 bit in parallel when the Program Files folder has the same name. Still, we go without the version number in the folder name though.
  • Loading branch information
neobrain committed Oct 20, 2013
1 parent 331db09 commit d8fd449
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Installer/Installer.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ SetCompressor /SOLID lzma

; MUI end ------

Name "${PRODUCT_NAME} ${PRODUCT_VERSION}"
Name "${PRODUCT_NAME}"
!define UN_NAME "Uninstall $(^Name)"
OutFile "dolphin-${DOLPHIN_ARCH}-${PRODUCT_VERSION}.exe"
InstallDir "${BASE_INSTALL_DIR}\$(^Name)"
Expand Down
5 changes: 2 additions & 3 deletions Installer/Installer_win32.nsi
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
!define DOLPHIN_ARCH Win32
!define BASE_INSTALL_DIR "$PROGRAMFILES32"
!define PRODUCT_NAME "Dolphin"
!define PRODUCT_PLATFORM "32 Bit"
!define PRODUCT_NAME "Dolphin x86"

!include Installer.nsi
!include Installer.nsi
3 changes: 1 addition & 2 deletions Installer/Installer_x64.nsi
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
!define DOLPHIN_ARCH x64
!define BASE_INSTALL_DIR "$PROGRAMFILES64"
!define PRODUCT_NAME "Dolphin"
!define PRODUCT_PLATFORM "64 Bit"

!include Installer.nsi
!include Installer.nsi

0 comments on commit d8fd449

Please sign in to comment.