mirror of
https://github.com/OpenRCT2/OpenRCT2.git
synced 2025-01-22 10:21:57 -05:00
Fix #13292: Impossible excitement rating requirements
Incorrect argument was used when drawing the minimum excitement rating in the Objective Selection window.
This commit is contained in:
parent
390adaaaf9
commit
3e7ff12a72
3 changed files with 6 additions and 0 deletions
|
@ -161,6 +161,7 @@ The following people are not part of the development team, but have been contrib
|
|||
* Stephan Spengler (Sadret)
|
||||
* Roger Seekell (rpstester)
|
||||
* Ben Johnston (gsckoco)
|
||||
* (evilclownattack)
|
||||
|
||||
## Toolchain
|
||||
* (Balletie) - macOS
|
||||
|
|
|
@ -42,6 +42,7 @@
|
|||
- Fix: [#13226, #7280] No error is shown when attempting to load a corrupted save.
|
||||
- Fix: [#13266] Plugin API: Deleting key of sharedStorage not working.
|
||||
- Fix: [#13278] Desync caused by ghost tiles changing the ride mode.
|
||||
- Fix: [#13292] Impossible excitement rating requirements with finish building 5 coasters goal
|
||||
- Improved: [#13023] Made add_news_item console command last argument, assoc, optional.
|
||||
- Improved: [#13098] Improvements to the maze construction window user interface
|
||||
- Improved: [#13125] Selecting the RCT2 files now uses localised dialogs.
|
||||
|
|
|
@ -854,6 +854,10 @@ static void window_editor_objective_options_main_paint(rct_window* w, rct_drawpi
|
|||
stringId = STR_WINDOW_OBJECTIVE_VALUE_LENGTH;
|
||||
arg = gScenarioObjective.MinimumLength;
|
||||
break;
|
||||
case OBJECTIVE_FINISH_5_ROLLERCOASTERS:
|
||||
stringId = STR_WINDOW_OBJECTIVE_VALUE_RATING;
|
||||
arg = gScenarioObjective.MinimumExcitement;
|
||||
break;
|
||||
default:
|
||||
stringId = STR_WINDOW_OBJECTIVE_VALUE_RATING;
|
||||
arg = gScenarioObjective.Currency;
|
||||
|
|
Loading…
Reference in a new issue