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)
* Patrick Martinez (martip23)
* Andy Ford (AndyTWF)
* Matthew Beaudin (mattbeaudin)
## Toolchain
* (Balletie) - macOS

View file

@ -17,6 +17,7 @@
- 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: [#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)
------------------------------------------------------------------------

View file

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