Rename some cart info variables that indicates size (readability)
This commit is contained in:
12
src/cart.h
12
src/cart.h
@@ -20,12 +20,12 @@ typedef struct {
|
||||
* set to mapper 4.
|
||||
*/
|
||||
int battery; /* Presence of an actual battery. */
|
||||
int prgRom; /* total prg rom size in 16 K chunks */
|
||||
int chrRom; /* total chr rom size in 8 K chunks */
|
||||
int prgRam; /* prg ram size (volatile) */
|
||||
int chrRam; /* chr ram size (volatile) */
|
||||
int prgRam_battery; /* prg ram size (non-volatile or battery backed) */
|
||||
int chrRam_battery; /* chr ram size (non-volatile or battery backed) */
|
||||
int PRGRomSize; /* total prg rom size in 16 K chunks */
|
||||
int CHRRomSize; /* total chr rom size in 8 K chunks */
|
||||
int PRGRamSize; /* prg ram size (volatile) */
|
||||
int CHRRamSize; /* chr ram size (volatile) */
|
||||
int PRGRamSaveSize; /* prg ram size (non-volatile or battery backed) */
|
||||
int CHRRamSaveSize; /* chr ram size (non-volatile or battery backed) */
|
||||
int region; /* video system timing (ntsc, pal, dendy */
|
||||
|
||||
uint8 MD5[16];
|
||||
|
||||
Reference in New Issue
Block a user