diff --git a/Games/Breakout/main.cpp b/Games/Breakout/main.cpp index 1fa509e1b24..9d88cac94d8 100644 --- a/Games/Breakout/main.cpp +++ b/Games/Breakout/main.cpp @@ -34,6 +34,7 @@ int main(int argc, char** argv) auto window = GUI::Window::construct(); window->resize(Breakout::Game::game_width, Breakout::Game::game_height); window->set_title("Breakout"); + window->set_double_buffering_enabled(false); window->set_main_widget(); window->show(); return app->exec();