Do not attempt to perform viewport scrolling in game bootstrap mode.

Do not increase date in bootstrap mode
This commit is contained in:
Jonathan G Rennison
2017-10-11 08:44:58 +01:00
parent 3f83546dfc
commit 5282394b04
2 changed files with 4 additions and 4 deletions

View File

@@ -291,7 +291,7 @@ void IncreaseDate()
/* increase day, and check if a new day is there? */
_tick_counter++;
if (_game_mode == GM_MENU) return;
if (_game_mode == GM_MENU || _game_mode == GM_BOOTSTRAP) return;
_date_fract++;
if (_date_fract < DAY_TICKS) return;