summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2009-09-01 21:27:33 +0000
committersmatz <smatz@openttd.org>2009-09-01 21:27:33 +0000
commit2db855e00c26034b74825a70f8e6137a06c5c031 (patch)
treed64446da9d02ff5e324db85e2a76192da4036b8d
parent94988a79f32d63323df3e7cc1e011bbd834504a4 (diff)
downloadopenttd-2db855e00c26034b74825a70f8e6137a06c5c031.tar.xz
(svn r17359) -Fix: put static before cv qualifier, some compilers complain about that
-rw-r--r--src/misc_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/misc_gui.cpp b/src/misc_gui.cpp
index a3b498706..f2caad7d2 100644
--- a/src/misc_gui.cpp
+++ b/src/misc_gui.cpp
@@ -408,7 +408,7 @@ struct AboutWindow : public Window {
int text_position; ///< The top of the scrolling text
byte counter; ///< Used to scroll the text every 5 ticks
int line_height; ///< The height of a single line
- const static int num_visible_lines = 19; ///< The number of lines visible simultaneously
+ static const int num_visible_lines = 19; ///< The number of lines visible simultaneously
AboutWindow() : Window()
{