From 5b82cb0418211843da338ad73a488a0900526d24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20L=C3=B6f?= Date: Sat, 5 Mar 2016 17:29:37 +1300 Subject: [PATCH] Fix the "skip" button in story screens. b308df8c7eb3b3c767580f08a454a2967405646a broke the skip button, this restores the functionality to a working state. --- src/storyscreen/interface.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/storyscreen/interface.cpp b/src/storyscreen/interface.cpp index 3e327b3bb03c..0287085c7853 100644 --- a/src/storyscreen/interface.cpp +++ b/src/storyscreen/interface.cpp @@ -64,7 +64,8 @@ void show_story(display &disp, const std::string &scenario_name, } break; case storyscreen::QUIT: - break; + video2::trigger_full_redraw(); + return; } } video2::trigger_full_redraw();