From 331db09aa4bcd0064ba1c470235b6c48e06a481c Mon Sep 17 00:00:00 2001 From: Tony Wasserka Date: Sun, 20 Oct 2013 14:30:54 +0200 Subject: [PATCH] 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. --- Installer/Installer_win32.nsi | 5 +++-- Installer/Installer_x64.nsi | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Installer/Installer_win32.nsi b/Installer/Installer_win32.nsi index 35d5d1f622..6e0be28d39 100644 --- a/Installer/Installer_win32.nsi +++ b/Installer/Installer_win32.nsi @@ -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 \ No newline at end of file +!include Installer.nsi diff --git a/Installer/Installer_x64.nsi b/Installer/Installer_x64.nsi index 3b6ee79f50..206868a7c1 100644 --- a/Installer/Installer_x64.nsi +++ b/Installer/Installer_x64.nsi @@ -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 \ No newline at end of file +!include Installer.nsi