Skip to content

Commit

Permalink
Fix the "skip" button in story screens.
Browse files Browse the repository at this point in the history
b308df8 broke the skip button, this
restores the functionality to a working state.
  • Loading branch information
aginor committed Mar 5, 2016
1 parent 62ce4ff commit 5b82cb0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/storyscreen/interface.cpp
Expand Up @@ -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();
Expand Down

0 comments on commit 5b82cb0

Please sign in to comment.