diff --git a/stepmania/src/StepMania.cpp b/stepmania/src/StepMania.cpp index 1e1ef23629..ecdadce32d 100644 --- a/stepmania/src/StepMania.cpp +++ b/stepmania/src/StepMania.cpp @@ -644,6 +644,7 @@ static void RestoreAppPri() #define GAMEPREFS_INI_PATH BASE_PATH "Data" SLASH "GamePrefs.ini" +#define STATIC_INI_PATH BASE_PATH "Data" SLASH "Static.ini" void ChangeCurrentGame( Game g ) { @@ -669,6 +670,9 @@ void ReadGamePrefsFromDisk( bool bSwitchToLastPlayedGame ) ini.SetPath( GAMEPREFS_INI_PATH ); ini.ReadFile(); // it's OK if this fails + ini.SetPath( STATIC_INI_PATH ); + ini.ReadFile(); // it's OK if this fails, too + CString sAnnouncer = sGameName, sTheme = sGameName, sNoteSkin = sGameName; // if these calls fail, the three strings will keep the initial values set above.