Removed event context from storyscreen controller

This fixes an issue where no click would register if using the GUI2 storyscreen dialog. Its removal doesn't seem
to have any effect on the GUI1 one either.
This commit is contained in:
Charles Dang 2017-03-24 12:24:28 +11:00
parent b917e16e6a
commit d22a4ca696
2 changed files with 0 additions and 2 deletions

View file

@ -44,7 +44,6 @@ namespace storyscreen {
controller::controller(CVideo& video, const vconfig& data, const std::string& scenario_name,
int segment_index)
: video_(video)
, evt_context_()
, scenario_name_(scenario_name)
, segment_index_(segment_index)
, parts_()

View file

@ -67,7 +67,6 @@ private:
void resolve_wml(const vconfig& cfg);
CVideo& video_;
const events::event_context evt_context_;
std::string scenario_name_;
int segment_index_;