From 5e2b10e6f48542309379c06ed66925a3ee30f57d Mon Sep 17 00:00:00 2001 From: scawful Date: Tue, 6 Aug 2024 21:34:31 -0400 Subject: [PATCH] add gfx_sheets and mutable_gfx_sheets to Rom --- src/app/rom.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/app/rom.h b/src/app/rom.h index 4b4a3305..20544cab 100644 --- a/src/app/rom.h +++ b/src/app/rom.h @@ -433,6 +433,9 @@ class Rom : public core::ExperimentFlags { auto link_graphics() { return link_graphics_; } auto mutable_link_graphics() { return &link_graphics_; } + auto gfx_sheets() { return graphics_sheets_; } + auto mutable_gfx_sheets() { return &graphics_sheets_; } + auto title() const { return title_; } auto size() const { return size_; } auto begin() { return rom_data_.begin(); }