summaryrefslogtreecommitdiff
path: root/src/date.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-08-19 09:38:30 +0000
committerrubidium <rubidium@openttd.org>2007-08-19 09:38:30 +0000
commit0fed821efbeb8930cf3c292db79148c2adee29f3 (patch)
treea6172830ac743f23f1b97516eefc1a629772000d /src/date.cpp
parentfda1c9d34a3f6d8c3edd103587e28758d703221b (diff)
downloadopenttd-0fed821efbeb8930cf3c292db79148c2adee29f3.tar.xz
(svn r10932) -Codechange: replace "text" with "chat" for the chat related function and variables.
Diffstat (limited to 'src/date.cpp')
-rw-r--r--src/date.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/date.cpp b/src/date.cpp
index 315c35db8..6080ab895 100644
--- a/src/date.cpp
+++ b/src/date.cpp
@@ -182,7 +182,7 @@ static OnNewVehicleDayProc * _on_new_vehicle_day_proc[] = {
};
extern void WaypointsDailyLoop();
-extern void TextMessageDailyLoop();
+extern void ChatMessageDailyLoop();
extern void EnginesDailyLoop();
extern void DisasterDailyLoop();
@@ -245,7 +245,7 @@ void IncreaseDate()
/* yeah, increase day counter and call various daily loops */
_date++;
- TextMessageDailyLoop();
+ ChatMessageDailyLoop();
DisasterDailyLoop();
WaypointsDailyLoop();
@@ -309,7 +309,7 @@ void IncreaseDate()
/* Because the _date wraps here, and text-messages expire by game-days, we have to clean out
* all of them if the date is set back, else those messages will hang for ever */
- InitTextMessage();
+ InitChatMessage();
}
if (_patches.auto_euro) CheckSwitchToEuro();