diff --git a/src/client/uimap.cpp b/src/client/uimap.cpp index e7086111..b31e8ad2 100644 --- a/src/client/uimap.cpp +++ b/src/client/uimap.cpp @@ -77,7 +77,7 @@ void UIMap::movePixels(int x, int y) bool UIMap::setZoom(int zoom) { - m_zoom = stdext::clamp(zoom, m_maxZoomOut, m_maxZoomIn); + m_zoom = stdext::clamp(zoom, m_maxZoomIn, m_maxZoomOut); updateVisibleDimension(); return false; }