summaryrefslogtreecommitdiff
path: root/src/gfx.cpp
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2008-03-04 12:14:34 +0000
committerpeter1138 <peter1138@openttd.org>2008-03-04 12:14:34 +0000
commitdebabbbd9aac8ac119d8d09a907ae9f97a7eb471 (patch)
tree5841819315afbb068ecf4e0ec50dc7d3320852a1 /src/gfx.cpp
parent475f6ca3e397dcd0780fb3012149480953dfc637 (diff)
downloadopenttd-debabbbd9aac8ac119d8d09a907ae9f97a7eb471.tar.xz
(svn r12335) -Codechange: Don't stuff signed values into a unsigned variable when the variable can just be unsigned...
Diffstat (limited to 'src/gfx.cpp')
-rw-r--r--src/gfx.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gfx.cpp b/src/gfx.cpp
index 500096170..49d565b29 100644
--- a/src/gfx.cpp
+++ b/src/gfx.cpp
@@ -37,7 +37,7 @@ bool _screen_disable_anim = false; ///< Disable palette animation (important f
bool _exit_game;
bool _networking; ///< are we in networking mode?
byte _game_mode;
-byte _pause_game;
+int8 _pause_game;
int _pal_first_dirty;
int _pal_count_dirty;