add save gfx groups
This commit is contained in:
@@ -400,8 +400,7 @@ void MasterEditor::DrawFileMenu() {
|
||||
Checkbox("Log Instructions to Debugger",
|
||||
&mutable_flags()->kLogInstructions);
|
||||
Checkbox("Save All Palettes", &mutable_flags()->kSaveAllPalettes);
|
||||
Checkbox("Save With Change Queue",
|
||||
&mutable_flags()->kSaveWithChangeQueue);
|
||||
Checkbox("Save Gfx Groups", &mutable_flags()->kSaveGfxGroups);
|
||||
Checkbox("Use New ImGui Input", &mutable_flags()->kUseNewImGuiInput);
|
||||
ImGui::EndMenu();
|
||||
}
|
||||
@@ -596,6 +595,7 @@ void MasterEditor::DrawHelpMenu() {
|
||||
|
||||
ImGui::Text("Graphics");
|
||||
ImGui::BulletText("View Decompressed Graphics Sheets");
|
||||
ImGui::BulletText("View/Update Graphics Groups");
|
||||
|
||||
ImGui::Text("Palettes");
|
||||
ImGui::BulletText("View Palette Groups");
|
||||
@@ -604,8 +604,6 @@ void MasterEditor::DrawHelpMenu() {
|
||||
ImGui::BulletText("All Listed Overworld Features");
|
||||
ImGui::BulletText("Hex Editor Changes");
|
||||
|
||||
|
||||
|
||||
if (ImGui::Button("Close", gui::kDefaultModalSize)) {
|
||||
open_supported_features = false;
|
||||
ImGui::CloseCurrentPopup();
|
||||
|
||||
@@ -65,6 +65,7 @@ class MasterEditor : public SharedRom,
|
||||
void Shutdown() { overworld_editor_.Shutdown(); }
|
||||
|
||||
auto emulator() -> emu::Emulator& { return emulator_; }
|
||||
auto quit() { return quit_; }
|
||||
|
||||
private:
|
||||
void DrawFileDialog();
|
||||
@@ -81,6 +82,7 @@ class MasterEditor : public SharedRom,
|
||||
void LoadRom();
|
||||
void SaveRom();
|
||||
|
||||
bool quit_ = false;
|
||||
bool about_ = false;
|
||||
bool rom_info_ = false;
|
||||
bool backup_rom_ = false;
|
||||
|
||||
Reference in New Issue
Block a user