From 5520f920494447cde21f0d9616e2eb540d8e38bf Mon Sep 17 00:00:00 2001 From: scawful Date: Sat, 13 Jul 2024 19:35:43 -0400 Subject: [PATCH] add ow and uw editors by default --- src/app/editor/master_editor.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 = "");