diff --git a/src/app/editor/master_editor.h b/src/app/editor/master_editor.h index 38be4004..a6fd30b1 100644 --- a/src/app/editor/master_editor.h +++ b/src/app/editor/master_editor.h @@ -57,7 +57,11 @@ class MasterEditor : public SharedRom, public context::GfxContext, public core::ExperimentFlags { public: - MasterEditor() { current_editor_ = &overworld_editor_; } + MasterEditor() { + current_editor_ = &overworld_editor_; + active_editors_.push_back(&overworld_editor_); + active_editors_.push_back(&dungeon_editor_); + } void SetupScreen(std::shared_ptr renderer, std::string filename = "");