Skip to content

Commit

Permalink
Fix flickering of all animation and haloes.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
aginor committed Apr 23, 2016
1 parent da82cbe commit e0e95d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/game_display.cpp
Expand Up @@ -263,7 +263,7 @@ void game_display::pre_draw() {


void game_display::post_draw() {
display::pre_draw();
display::post_draw();
if (boost::shared_ptr<wb::manager> w = wb_.lock()) {
w->post_draw();
}
Expand Down

0 comments on commit e0e95d8

Please sign in to comment.