From 9b070b5405d11c74d89a747e912e627e39850f7c Mon Sep 17 00:00:00 2001 From: alberth Date: Sat, 27 Jun 2009 20:53:45 +0000 Subject: (svn r16677) -Codechange: Dimension width and height are unsigned. --- src/misc_gui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/misc_gui.cpp') diff --git a/src/misc_gui.cpp b/src/misc_gui.cpp index bead99f04..4ebdb53ec 100644 --- a/src/misc_gui.cpp +++ b/src/misc_gui.cpp @@ -802,8 +802,8 @@ void GuiShowTooltips(StringID str, uint paramcount, const uint64 params[], bool * Clamp value to below main toolbar and above statusbar. If tooltip would * go below window, flip it so it is shown above the cursor */ int y = Clamp(_cursor.pos.y + _cursor.size.y + _cursor.offs.y + 5, 22, _screen.height - 12); - if (y + br.height > _screen.height - 12) y = _cursor.pos.y + _cursor.offs.y - br.height - 5; - int x = Clamp(_cursor.pos.x - (br.width >> 1), 0, _screen.width - br.width); + if (y + (int)br.height > _screen.height - 12) y = _cursor.pos.y + _cursor.offs.y - (int)br.height - 5; + int x = Clamp(_cursor.pos.x - (int)(br.width >> 1), 0, _screen.width - (int)br.width); const Widget *wid = InitializeWidgetArrayFromNestedWidgets(_nested_tooltips_widgets, lengthof(_nested_tooltips_widgets), _tooltips_widgets, &generated_tooltips_widgets); -- cgit v1.2.3-70-g09d2