diff --git a/src/app/rom.h b/src/app/rom.h index 67567c70..a4ce24e9 100644 --- a/src/app/rom.h +++ b/src/app/rom.h @@ -87,6 +87,7 @@ class ROM { auto GetSize() const { return size_; } auto GetTitle() const { return title; } auto GetGraphicsBin() const { return graphics_bin_; } + auto GetRenderer() const { return renderer_; } void SetupRenderer(std::shared_ptr renderer) { renderer_ = renderer; } @@ -118,7 +119,6 @@ class ROM { std::string filename_; Bytes rom_data_; - Bytes master_graphics_bin_; std::shared_ptr renderer_; absl::flat_hash_map graphics_bin_; };