Skip to content

Commit

Permalink
Installer: Always call the Program Files folder "Dolphin".
Browse files Browse the repository at this point in the history
This drops support for installing multiple Dolphin versions to Program Files. 32 Bit and 64 Bit versions can still be installed in parallel.
  • Loading branch information
neobrain committed Oct 20, 2013
1 parent 219d452 commit 331db09
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions Installer/Installer_win32.nsi
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
!define DOLPHIN_ARCH Win32
!define BASE_INSTALL_DIR "$PROGRAMFILES32"
!define PRODUCT_NAME "Dolphin x86"
!define PRODUCT_NAME "Dolphin"
!define PRODUCT_PLATFORM "32 Bit"

!include Installer.nsi
!include Installer.nsi
3 changes: 2 additions & 1 deletion Installer/Installer_x64.nsi
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
!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 331db09

Please sign in to comment.