From b77dcc9c86b1d80f1895fd6cff4b2f7ba69bd71f Mon Sep 17 00:00:00 2001 From: scawful Date: Sun, 14 Jul 2024 14:31:10 -0400 Subject: [PATCH] add gfx editor and pal editor as default tabs --- src/app/editor/master_editor.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/editor/master_editor.h b/src/app/editor/master_editor.h index a6fd30b1..7433074e 100644 --- a/src/app/editor/master_editor.h +++ b/src/app/editor/master_editor.h @@ -61,6 +61,8 @@ class MasterEditor : public SharedRom, current_editor_ = &overworld_editor_; active_editors_.push_back(&overworld_editor_); active_editors_.push_back(&dungeon_editor_); + active_editors_.push_back(&graphics_editor_); + active_editors_.push_back(&palette_editor_); } void SetupScreen(std::shared_ptr renderer,