From e154b53fc2fc3c6a6339cfff6817aa7ba28e7f23 Mon Sep 17 00:00:00 2001 From: Justin Scofield Date: Sun, 12 Jun 2022 13:33:21 -0400 Subject: [PATCH] housekeeping --- src/Application/Utils/ROM.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/Application/Utils/ROM.h b/src/Application/Utils/ROM.h index 4235ba68..a18ca665 100644 --- a/src/Application/Utils/ROM.h +++ b/src/Application/Utils/ROM.h @@ -35,7 +35,7 @@ class ROM { unsigned int getRomPosition(const TilePreset& preset, int directAddr, unsigned int snesAddr); - int SnesToPc(int addr); + int SnesToPc(int addr); short AddressFromBytes(byte addr1, byte addr2); ushort ReadShort(int addr); void Write(int addr, byte value); @@ -59,17 +59,17 @@ class ROM { byte* current_rom_; char* rom_data_; + bool fastrom; + long int size; + enum rom_type type; + unsigned char title[21] = "ROM Not Loaded"; + unsigned char version; + bool overrideHeaderInfo; bool overridenHeaderInfo; unsigned int lastUnCompressSize; unsigned int lastCompressedSize; unsigned int lastCompressSize; - - enum rom_type type; - bool fastrom; - unsigned char title[21]; - long int size; - unsigned char version; }; } // namespace Utils