Add Controller::PlayAudio for Emulator

This commit is contained in:
scawful
2024-04-20 07:40:44 -04:00
parent 2de3b283cd
commit 7072c18a92
3 changed files with 16 additions and 1 deletions

View File

@@ -63,6 +63,8 @@ class MasterEditor : public SharedRom,
void Shutdown() { overworld_editor_.Shutdown(); }
auto emulator() -> emu::Emulator& { return emulator_; }
private:
void DrawFileDialog();
void DrawStatusPopup();
@@ -101,7 +103,7 @@ class MasterEditor : public SharedRom,
ScreenEditor screen_editor_;
SpriteEditor sprite_editor_;
Editor *current_editor_ = nullptr;
Editor* current_editor_ = nullptr;
};
} // namespace editor