summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbelugas <belugas@openttd.org>2007-11-11 01:39:15 +0000
committerbelugas <belugas@openttd.org>2007-11-11 01:39:15 +0000
commit592b0c4e514be6a952aef08564cc7284727b8807 (patch)
treed987e9f8bec58ef1fa441f5bf13ee4ab6a8927ad
parentd32604d59e048ee72f7540e9146c6ad6e5bd4a31 (diff)
downloadopenttd-592b0c4e514be6a952aef08564cc7284727b8807.tar.xz
(svn r11404) -Codechange: remove 2 magical numbers
-rw-r--r--src/main_gui.cpp2
-rw-r--r--src/news_gui.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/main_gui.cpp b/src/main_gui.cpp
index d84c6c2d1..77a1acdb1 100644
--- a/src/main_gui.cpp
+++ b/src/main_gui.cpp
@@ -2008,7 +2008,7 @@ static bool DrawScrollingStatusText(const NewsItem *ni, int pos, int width)
int x;
char buffer[256];
- if (ni->display_mode == 3) {
+ if (ni->display_mode == NM_CALLBACK) {
str = _get_news_string_callback[ni->callback](ni);
} else {
CopyInDParam(0, ni->params, lengthof(ni->params));
diff --git a/src/news_gui.cpp b/src/news_gui.cpp
index 724ec1e78..bf862da22 100644
--- a/src/news_gui.cpp
+++ b/src/news_gui.cpp
@@ -652,7 +652,7 @@ static void DrawNewsString(int x, int y, uint16 color, const NewsItem *ni, uint
char *dest;
StringID str;
- if (ni->display_mode == 3) {
+ if (ni->display_mode == NM_CALLBACK) {
str = _get_news_string_callback[ni->callback](ni);
} else {
CopyInDParam(0, ni->params, lengthof(ni->params));