forked from dolphin-emu/dolphin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Installer: Always call the Program Files folder "Dolphin".
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
Showing
2 changed files
with
5 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |