From 5e2eeab7246338346a557d87780dfa34ccb82fc0 Mon Sep 17 00:00:00 2001 From: rachytski Date: Wed, 8 Dec 2010 01:43:39 +0200 Subject: [PATCH] empty global rect optimization. --- map/render_queue_routine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/map/render_queue_routine.cpp b/map/render_queue_routine.cpp index aad3da2298..24e0de37df 100644 --- a/map/render_queue_routine.cpp +++ b/map/render_queue_routine.cpp @@ -279,7 +279,7 @@ void RenderQueueRoutine::Do() if ((areas[i].SizeX() != 0) && (areas[i].SizeY() != 0)) { frameScreen.PtoG(m2::Inflate(m2::RectD(areas[i]), 30 * m_visualScale, 30 * m_visualScale), glbRect); - if ((glbRect.SizeX() == 0) || (glbRect.SizeY())) + if ((glbRect.SizeX() == 0) || (glbRect.SizeY() == 0)) continue; m_threadDrawer->screen()->setClipRect(areas[i]);