From 4625695653c3c0be16b61b640c206c557af9ec7b Mon Sep 17 00:00:00 2001 From: rubidium Date: Sun, 25 May 2008 19:17:03 +0000 Subject: (svn r13251) -Codechange: rename _patches to _settings as that is more logic. -Codechange: move all Settings into substructs of _settings in a way that they are logically grouped. --- src/date.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/date.cpp') diff --git a/src/date.cpp b/src/date.cpp index ce8b99343..7ee769c64 100644 --- a/src/date.cpp +++ b/src/date.cpp @@ -283,10 +283,10 @@ void IncreaseDate() ShipsYearlyLoop(); if (_network_server) NetworkServerYearlyLoop(); - if (_cur_year == _patches.semaphore_build_before) ResetSignalVariant(); + if (_cur_year == _settings.gui.semaphore_build_before) ResetSignalVariant(); /* check if we reached end of the game */ - if (_cur_year == _patches.ending_year) { + if (_cur_year == _settings.gui.ending_year) { ShowEndGameChart(); /* check if we reached the maximum year, decrement dates by a year */ } else if (_cur_year == MAX_YEAR + 1) { @@ -303,5 +303,5 @@ void IncreaseDate() InitChatMessage(); } - if (_patches.auto_euro) CheckSwitchToEuro(); + if (_settings.gui.auto_euro) CheckSwitchToEuro(); } -- cgit v1.2.3-54-g00ecf