summaryrefslogtreecommitdiff
path: root/src/player_gui.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-05-08 14:14:16 +0000
committerrubidium <rubidium@openttd.org>2008-05-08 14:14:16 +0000
commit4a11ebe76fcaba45954aa2b6f29e6e75a8c30942 (patch)
tree28391b72686974ad52519cf61e4cf0cae4a0ad7e /src/player_gui.cpp
parent5fda77239e01c429b2d3a389bfc6a77148fc390a (diff)
downloadopenttd-4a11ebe76fcaba45954aa2b6f29e6e75a8c30942.tar.xz
(svn r13015) -Codechange: move some 'WP' structs out of window_gui.h to the .cpp files where they are actually used.
Diffstat (limited to 'src/player_gui.cpp')
-rw-r--r--src/player_gui.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/player_gui.cpp b/src/player_gui.cpp
index 4724a0dbb..845d5249f 100644
--- a/src/player_gui.cpp
+++ b/src/player_gui.cpp
@@ -42,6 +42,12 @@ struct facesel_d {
};
assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(facesel_d));
+struct highscore_d {
+ uint32 background_img;
+ int8 rank;
+};
+assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(highscore_d));
+
enum {
FIRST_GUI_CALL = INT_MAX, ///< default value to specify thuis is the first call of the resizable gui
};