summaryrefslogtreecommitdiff
path: root/texteff.c
diff options
context:
space:
mode:
authorDarkvater <darkvater@openttd.org>2006-10-27 11:17:38 +0000
committerDarkvater <darkvater@openttd.org>2006-10-27 11:17:38 +0000
commite205c693e116ef4773a1d76b8b6cfef3762e25f5 (patch)
treef27a707d95d038e5744726eae735ad951a90ea6f /texteff.c
parentbc3c56ffeb832f45fc8009b586697e27f3f1c49a (diff)
downloadopenttd-e205c693e116ef4773a1d76b8b6cfef3762e25f5.tar.xz
(svn r6958) -Fix (r6956): GCC warning (thx Tron) and a coding style forgotten in r6957
Diffstat (limited to 'texteff.c')
-rw-r--r--texteff.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/texteff.c b/texteff.c
index 84d22726a..51f98aeed 100644
--- a/texteff.c
+++ b/texteff.c
@@ -52,9 +52,9 @@ extern void memcpy_pitch(void *dst, void *src, int w, int h, int srcpitch, int d
static inline uint GetTextMessageCount(void)
{
- uint i = 0;
+ uint i;
- for (i; i < MAX_CHAT_MESSAGES; i++) {
+ for (i = 0; i < MAX_CHAT_MESSAGES; i++) {
if (_textmsg_list[i].message[0] == '\0') break;
}
@@ -185,8 +185,7 @@ void DrawTextMessage(void)
// First undraw if needed
UndrawTextMessage();
- if (_iconsole_mode == ICONSOLE_FULL)
- return;
+ if (_iconsole_mode == ICONSOLE_FULL) return;
/* Check if we have anything to draw at all */
has_message = false;