1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-19 13:52:54 +01:00

Fix #7773: Once research has been completed, player is still charged for research

This commit is contained in:
Matthew Beaudin
2018-07-17 15:54:42 -04:00
committed by Michael Steenbeek
parent ab20dcde9f
commit 183411aa54
3 changed files with 5 additions and 0 deletions

View File

@@ -111,6 +111,7 @@ The following people are not part of the development team, but have been contrib
* Toby Hinloopen (tobyhinloopen) * Toby Hinloopen (tobyhinloopen)
* Patrick Martinez (martip23) * Patrick Martinez (martip23)
* Andy Ford (AndyTWF) * Andy Ford (AndyTWF)
* Matthew Beaudin (mattbeaudin)
## Toolchain ## Toolchain
* (Balletie) - macOS * (Balletie) - macOS

View File

@@ -17,6 +17,7 @@
- Fix: [#7734] Title sequence not included in macOS builds as of 0.2.0 release. - Fix: [#7734] Title sequence not included in macOS builds as of 0.2.0 release.
- Fix: [#7756] Steam RCT2 path not correctly checked on macOS and Linux. - Fix: [#7756] Steam RCT2 path not correctly checked on macOS and Linux.
- Fix: [#7765] Crash when opening ride list window on Windows Vista. - Fix: [#7765] Crash when opening ride list window on Windows Vista.
- Fix: [#7773] Once research has been completed, player is still charged for research.
0.2.0 (2018-06-10) 0.2.0 (2018-06-10)
------------------------------------------------------------------------ ------------------------------------------------------------------------

View File

@@ -373,6 +373,9 @@ void research_update()
research_update_uncompleted_types(); research_update_uncompleted_types();
research_invalidate_related_windows(); research_invalidate_related_windows();
break; break;
case RESEARCH_STAGE_FINISHED_ALL:
gResearchFundingLevel = RESEARCH_FUNDING_NONE;
break;
} }
} }
} }