Merge pull request #15 from Reonu/savefile

soundMode is u8 and uses bitfield
This commit is contained in:
CrashOveride95
2021-07-20 19:37:36 -04:00
committed by GitHub

View File

@@ -58,10 +58,10 @@ struct MainMenuSaveData
// the older the high score is. This is used for tie-breaking when displaying
// on the high score screen.
u32 coinScoreAges[NUM_SAVE_FILES];
u16 soundMode;
u8 soundMode: 2;
#ifdef VERSION_EU
u16 language;
u8 language: 2;
#define SUBTRAHEND 8
#else
#define SUBTRAHEND 6