summaryrefslogtreecommitdiff
path: root/src/gfx.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/gfx.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/gfx.cpp')
-rw-r--r--src/gfx.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gfx.cpp b/src/gfx.cpp
index ecbf97048..25c60dba0 100644
--- a/src/gfx.cpp
+++ b/src/gfx.cpp
@@ -62,7 +62,7 @@ void GfxScroll(int left, int top, int width, int height, int xo, int yo)
if (xo == 0 && yo == 0) return;
if (_cursor.visible) UndrawMouseCursor();
- UndrawTextMessage();
+ UndrawChatMessage();
blitter->ScrollBuffer(_screen.dst_ptr, left, top, width, height, xo, yo);
/* This part of the screen is now dirty. */
@@ -912,7 +912,7 @@ void RedrawScreenRect(int left, int top, int right, int bottom)
UndrawMouseCursor();
}
}
- UndrawTextMessage();
+ UndrawChatMessage();
DrawOverlappedWindowForAll(left, top, right, bottom);