diff --git a/stratagus/mainloop.cpp b/stratagus/mainloop.cpp index c2b9475c5..e9423d656 100644 --- a/stratagus/mainloop.cpp +++ b/stratagus/mainloop.cpp @@ -352,7 +352,7 @@ global void UpdateDisplay(void) if( MustRedraw==-1 ) { Invalidate(); } else { - if( (MustRedraw&RedrawMap) || (MustRedraw&RedrawMapOverlay) ) { + if( MustRedraw&RedrawMap ) { // FIXME: split into small parts see RedrawTile and RedrawRow InvalidateArea(TheUI.MapX,TheUI.MapY ,TheUI.MapWidth-TheUI.MapX,TheUI.MapHeight-TheUI.MapY);