diff options
Diffstat (limited to 'src/gui/minimap.cpp')
-rw-r--r-- | src/gui/minimap.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/minimap.cpp b/src/gui/minimap.cpp index 1f3a903c..8640fdb0 100644 --- a/src/gui/minimap.cpp +++ b/src/gui/minimap.cpp @@ -108,11 +108,11 @@ void Minimap::draw(gcn::Graphics *graphics) continue; } - int offset = (dotSize - 1) * mProportion; + int offset = (dotSize - 1) * (int) mProportion; graphics->fillRectangle(gcn::Rectangle( - (being->mX * mProportion) + getPadding() - offset, - (being->mY * mProportion) + getTitleBarHeight() - offset, + (being->mX * (int) mProportion) + getPadding() - offset, + (being->mY * (int) mProportion) + getTitleBarHeight() - offset, dotSize, dotSize)); } } |