changeset 9602:62ede9607d98 draft

(svn r13644) -Fix(r13643): compare an apple with an apple. MSVC seems to not care, but some other compilers do. Thanks to glx :)
author belugas <belugas@openttd.org>
date Fri, 27 Jun 2008 02:26:51 +0000
parents 0da1efb33f71
children 366b04ba8cb9
files src/toolbar_gui.cpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/toolbar_gui.cpp
+++ b/src/toolbar_gui.cpp
@@ -843,7 +843,7 @@
 
 	static const byte *arrangements[] = { arrange14, arrange15, arrange16, arrange17, arrange18, arrange19 };
 
-	uint max_icons = max(TBP_TOOLBAR_MINBUTTON, (w->width + TBP_BUTTONWIDTH / 2) / TBP_BUTTONWIDTH);
+	uint max_icons = max(TBP_TOOLBAR_MINBUTTON, (ToolBarProperties)((w->width + TBP_BUTTONWIDTH / 2) / TBP_BUTTONWIDTH));
 
 	assert(max_icons >= TBP_TOOLBAR_MINBUTTON && max_icons <= TBP_NORMAL_MAXBUTTON);