housekeeping

This commit is contained in:
scawful
2022-07-08 23:52:11 -04:00
parent 260f9d5166
commit e9c8152453
10 changed files with 77 additions and 99 deletions

View File

@@ -41,10 +41,10 @@ class ROM {
const uchar* getTitle() const { return title; }
long getSize() const { return size_; }
char getVersion() const { return version_; }
bool isLoaded() const { return loaded; }
bool isLoaded() const { return is_loaded_; }
private:
bool loaded = false;
bool is_loaded_ = false;
bool has_header_ = false;
long size_;
uint compressed_size_;