diff options
author | tron <tron@openttd.org> | 2005-09-28 21:49:55 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2005-09-28 21:49:55 +0000 |
commit | 3a964862f7b14c214a38689ad646924c96a34f95 (patch) | |
tree | 6629bf3a567cab920e973fca3410c46386bd8a11 | |
parent | ce1c72cf6ece7b5aaa0bac1a546efa55bdc851db (diff) | |
download | openttd-3a964862f7b14c214a38689ad646924c96a34f95.tar.xz |
(svn r2996) 0xFFFF -> INVALID_STRING_ID
-rw-r--r-- | bridge_gui.c | 4 | ||||
-rw-r--r-- | texteff.c | 12 |
2 files changed, 8 insertions, 8 deletions
diff --git a/bridge_gui.c b/bridge_gui.c index bab6e85ca..1dccbd5f7 100644 --- a/bridge_gui.c +++ b/bridge_gui.c @@ -115,7 +115,7 @@ void ShowBuildBridgeWindow(TileIndex start, TileIndex end, byte bridge_type) { uint j = 0; int32 ret; - uint16 errmsg; + StringID errmsg; DeleteWindowById(WC_BUILD_BRIDGE, 0); @@ -123,7 +123,7 @@ void ShowBuildBridgeWindow(TileIndex start, TileIndex end, byte bridge_type) _bridgedata.start_tile = start; _bridgedata.end_tile = end; - errmsg = 0xFFFF; + errmsg = INVALID_STRING_ID; // only query bridge building possibility once, result is the same for all bridges! // returns CMD_ERROR on failure, and priCe on success @@ -236,7 +236,7 @@ void AddTextEffect(StringID msg, int x, int y, uint16 duration) if (_game_mode == GM_MENU) return; - for (te = _text_effect_list; te->string_id != 0xFFFF; ) { + for (te = _text_effect_list; te->string_id != INVALID_STRING_ID; ) { if (++te == endof(_text_effect_list)) return; } @@ -259,7 +259,7 @@ void AddTextEffect(StringID msg, int x, int y, uint16 duration) static void MoveTextEffect(TextEffect *te) { if (te->duration < 8) { - te->string_id = 0xFFFF; + te->string_id = INVALID_STRING_ID; } else { te->duration-=8; te->y--; @@ -273,7 +273,7 @@ void MoveAllTextEffects(void) TextEffect *te; for (te = _text_effect_list; te != endof(_text_effect_list); te++ ) { - if (te->string_id != 0xFFFF) + if (te->string_id != INVALID_STRING_ID) MoveTextEffect(te); } } @@ -283,7 +283,7 @@ void InitTextEffects(void) TextEffect *te; for (te = _text_effect_list; te != endof(_text_effect_list); te++ ) { - te->string_id = 0xFFFF; + te->string_id = INVALID_STRING_ID; } } @@ -293,7 +293,7 @@ void DrawTextEffects(DrawPixelInfo *dpi) if (dpi->zoom < 1) { for (te = _text_effect_list; te != endof(_text_effect_list); te++ ) { - if (te->string_id == 0xFFFF) + if (te->string_id == INVALID_STRING_ID) continue; /* intersection? */ @@ -306,7 +306,7 @@ void DrawTextEffects(DrawPixelInfo *dpi) } } else if (dpi->zoom == 1) { for (te = _text_effect_list; te != endof(_text_effect_list); te++ ) { - if (te->string_id == 0xFFFF) + if (te->string_id == INVALID_STRING_ID) continue; /* intersection? */ |