Remove unused rom_file flag and version method from Rom class

This commit is contained in:
scawful
2025-04-05 14:07:07 -04:00
parent f3bb4e2358
commit 3e1dd19d48
2 changed files with 0 additions and 2 deletions

View File

@@ -13,7 +13,6 @@
*/ */
using namespace yaze; using namespace yaze;
DECLARE_FLAG(std::string, rom_file);
DEFINE_FLAG(std::string, rom_file, "", "The ROM file to load."); DEFINE_FLAG(std::string, rom_file, "", "The ROM file to load.");
int main(int argc, char** argv) { int main(int argc, char** argv) {

View File

@@ -166,7 +166,6 @@ class Rom {
auto end() { return rom_data_.end(); } auto end() { return rom_data_.end(); }
auto vector() const { return rom_data_; } auto vector() const { return rom_data_; }
auto version() const { return version_; }
auto filename() const { return filename_; } auto filename() const { return filename_; }
auto set_filename(std::string name) { filename_ = name; } auto set_filename(std::string name) { filename_ = name; }