From e0e95d86aac4e93cea0e9c63d42d5f3669c4f3e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20L=C3=B6f?= Date: Sat, 23 Apr 2016 23:09:13 +1200 Subject: [PATCH] Fix flickering of all animation and haloes. There was an erronous call left to display::flip() that caused the flickering. The fix is simply to remove the function and the call to it. --- src/game_display.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game_display.cpp b/src/game_display.cpp index 32869d58bd02..4931d8980a6e 100644 --- a/src/game_display.cpp +++ b/src/game_display.cpp @@ -263,7 +263,7 @@ void game_display::pre_draw() { void game_display::post_draw() { - display::pre_draw(); + display::post_draw(); if (boost::shared_ptr w = wb_.lock()) { w->post_draw(); }