summaryrefslogtreecommitdiff
path: root/src/game/GameView.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/GameView.cpp')
-rw-r--r--src/game/GameView.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/GameView.cpp b/src/game/GameView.cpp
index 1e4ca76..a10d9e4 100644
--- a/src/game/GameView.cpp
+++ b/src/game/GameView.cpp
@@ -865,6 +865,8 @@ void GameView::OnDraw()
ren->render_fire();
ren->draw_grav();
ren->DrawWalls();
+ ren->DrawSigns();
+ ren->FinaliseParts();
if(activeBrush && currentMouse.X > 0 && currentMouse.X < XRES && currentMouse.Y > 0 && currentMouse.Y < YRES)
{
if(drawMode==DrawRect && isMouseDown)
@@ -880,8 +882,6 @@ void GameView::OnDraw()
activeBrush->RenderPoint(g, c->PointTranslate(currentMouse));
}
}
- ren->DrawSigns();
- ren->FinaliseParts();
ren->RenderZoom();
if(selectMode!=SelectNone)