From 389ae727818dc520c83ed7cd2a30f4b8186821a2 Mon Sep 17 00:00:00 2001 From: Maarten Peters Date: Tue, 19 Jul 2016 22:57:48 +0200 Subject: [PATCH] Add extra default RCT2 vanilla install locations * 32 bit path for Steam. * 32 and 64 bit path for standard GOG Galaxy. * Update readme with latest install locations --- distribution/readme.txt | 6 +++++- src/config.c | 3 +++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/distribution/readme.txt b/distribution/readme.txt index 826210f6c8..399a299188 100644 --- a/distribution/readme.txt +++ b/distribution/readme.txt @@ -94,7 +94,11 @@ in the following locations: - C:\Program Files (x86)\Infogrames Interactive\RollerCoaster Tycoon 2, - C:\Program Files\Atari\RollerCoaster Tycoon 2, - C:\Program Files (x86)\Atari\RollerCoaster Tycoon 2, - - C:\GOG Games\RollerCoaster Tycoon 2 Triple Thrill Pack + - C:\GOG Games\RollerCoaster Tycoon 2 Triple Thrill Pack, + - C:\Program Files\GalaxyClient\Games\RollerCoaster Tycoon 2 Triple Thrill Pack, + - C:\Program Files (x86)\GalaxyClient\Games\RollerCoaster Tycoon 2 Triple Thrill Pack, + - C:\Program Files\Steam\steamapps\common\Rollercoaster Tycoon 2, + - C:\Program Files (x86)\Steam\steamapps\common\Rollercoaster Tycoon 2, - The location of the openrct2.exe (where OpenRCT2 was extracted/installed) If none of these locations are found, OpenRCT2 will ask you to manually specify diff --git a/src/config.c b/src/config.c index 45369d0b62..d5ab291413 100644 --- a/src/config.c +++ b/src/config.c @@ -913,6 +913,9 @@ static bool config_find_rct2_path(utf8 *resultPath) "C:\\Program Files\\Atari\\RollerCoaster Tycoon 2", "C:\\Program Files (x86)\\Atari\\RollerCoaster Tycoon 2", "C:\\GOG Games\\RollerCoaster Tycoon 2 Triple Thrill Pack", + "C:\\Program Files\\GalaxyClient\\Games\\RollerCoaster Tycoon 2 Triple Thrill Pack", + "C:\\Program Files (x86)\\GalaxyClient\\Games\\RollerCoaster Tycoon 2 Triple Thrill Pack", + "C:\\Program Files\\Steam\\steamapps\\common\\Rollercoaster Tycoon 2", "C:\\Program Files (x86)\\Steam\\steamapps\\common\\Rollercoaster Tycoon 2", gExePath };