summaryrefslogtreecommitdiff
path: root/main_gui.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-11-15 09:00:02 +0000
committertron <tron@openttd.org>2005-11-15 09:00:02 +0000
commitb9729fb72ef38d39eac4fdbe00c50efe4b0fe0d2 (patch)
tree403f3895461c780ab3903620ba2129a83d43eaea /main_gui.c
parent1b0091e0d29a59811522758c00b690f4f07b471b (diff)
downloadopenttd-b9729fb72ef38d39eac4fdbe00c50efe4b0fe0d2.tar.xz
(svn r3185) const
Diffstat (limited to 'main_gui.c')
-rw-r--r--main_gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main_gui.c b/main_gui.c
index 8945f3de6..cac653495 100644
--- a/main_gui.c
+++ b/main_gui.c
@@ -2413,7 +2413,7 @@ void SetupColorsAndInitialWindow(void)
const byte* b = GetNonSprite(0x307 + i);
assert(b);
- _color_list[i] = *(ColorList*)(b + 0xC6);
+ _color_list[i] = *(const ColorList*)(b + 0xC6);
}
width = _screen.width;