From 78bcd13b543d97b736b50b6ec0aa67b52c2d91c4 Mon Sep 17 00:00:00 2001 From: scawful Date: Tue, 17 Oct 2023 17:08:50 -0400 Subject: [PATCH] Remove conditional from prototype ow btn --- src/app/editor/overworld_editor.cc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/app/editor/overworld_editor.cc b/src/app/editor/overworld_editor.cc index 3da7724f..06868ecf 100644 --- a/src/app/editor/overworld_editor.cc +++ b/src/app/editor/overworld_editor.cc @@ -470,10 +470,8 @@ absl::Status OverworldEditor::DrawExperimentalModal() { }); if (ImGui::Button("Load Prototype Overworld with ROM graphics")) { - if (rom()->isLoaded() && !all_gfx_loaded_) { - RETURN_IF_ERROR(LoadGraphics()) - all_gfx_loaded_ = true; - } + RETURN_IF_ERROR(LoadGraphics()) + all_gfx_loaded_ = true; } gui::TextWithSeparators("Configuration");