From c603d48a06009fe041c902d41227d27f5cfcc9d5 Mon Sep 17 00:00:00 2001 From: hikerstk Date: Thu, 16 Apr 2009 10:35:35 +0000 Subject: [PATCH] Removed warnings on VS. git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/branches/irrlicht@3394 178a84e3-b1eb-0310-8ba1-8eac791a3b58 --- src/gui/skin.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/skin.cpp b/src/gui/skin.cpp index 13a9ad70b..f58824ab7 100644 --- a/src/gui/skin.cpp +++ b/src/gui/skin.cpp @@ -461,11 +461,11 @@ void Skin::drawGaugeFill(const core::rect< s32 > &rect, Widget* widget, bool foc GaugeWidget* w = dynamic_cast(widget); // the width of an handle is about 0.844 the height in the current skin. FIXME - don't hardcode. - const int handle_size = widget->h*0.844; + const int handle_size = (int)(widget->h*0.844f); // the 'rect' argument will be too small, because irrlicht has no suitable gauge component, so i used a scrollbar const core::rect< s32 > dest_area = core::rect< s32 >(widget->x+handle_size, widget->y, - widget->x + handle_size + (widget->w - 2*handle_size)*w->getValue(), + widget->x + handle_size + (int)((widget->w - 2*handle_size)*w->getValue()), widget->y + widget->h); const int texture_w = m_tex_gaugefill->getSize().Width;