From d46a21756576b0583e55d9bae0faa7117818f28f Mon Sep 17 00:00:00 2001 From: Reonu Date: Sun, 18 Jul 2021 11:23:31 +0100 Subject: [PATCH] made soundMode into a u8 --- src/game/save_file.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/save_file.h b/src/game/save_file.h index 71c5211e..00fc042b 100644 --- a/src/game/save_file.h +++ b/src/game/save_file.h @@ -58,7 +58,7 @@ 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: 2; + u8 soundMode: 2; #ifdef WIDE u8 wideMode: 1; #endif