diff --git a/Docs/Changelog_SSCformat.txt b/Docs/Changelog_SSCformat.txt index 5015f93a49..95b48cf7d7 100644 --- a/Docs/Changelog_SSCformat.txt +++ b/Docs/Changelog_SSCformat.txt @@ -9,6 +9,9 @@ change to JSON, but it is unsure if this will be done. Implement .ssc at your own risk. ________________________________________________________________________________ +[v0.59] - Wolfman2000 +* Typo fix: #RADARVALUES needed a semicolon at the end, not a colon. + [v0.58] - Wolfman2000 * Implement #LABELS tag for easier Editor work/Rock Band section mimicry. diff --git a/src/NotesWriterSSC.cpp b/src/NotesWriterSSC.cpp index 7bba5c38db..921d082bde 100644 --- a/src/NotesWriterSSC.cpp +++ b/src/NotesWriterSSC.cpp @@ -303,7 +303,7 @@ static RString GetSSCNoteData( const Song &song, const Steps &in, bool bSavingCa FOREACH_ENUM( RadarCategory, rc ) asRadarValues.push_back( ssprintf("%.3f", rv[rc]) ); } - lines.push_back( ssprintf( "#RADARVALUES:%s:", join(",",asRadarValues).c_str() ) ); + lines.push_back( ssprintf( "#RADARVALUES:%s;", join(",",asRadarValues).c_str() ) ); lines.push_back( ssprintf( "#CREDIT:%s;", SmEscape(in.GetCredit()).c_str() ) ); diff --git a/src/Song.cpp b/src/Song.cpp index 23f68f2891..5743eb9199 100644 --- a/src/Song.cpp +++ b/src/Song.cpp @@ -41,7 +41,7 @@ * @brief The internal version of the cache for StepMania. * * Increment this value to invalidate the current cache. */ -const int FILE_CACHE_VERSION = 170; +const int FILE_CACHE_VERSION = 171; /** @brief How long does a song sample last by default? */ const float DEFAULT_MUSIC_SAMPLE_LENGTH = 12.f; diff --git a/src/Song.h b/src/Song.h index 9a9df6cc27..9c105a5732 100644 --- a/src/Song.h +++ b/src/Song.h @@ -17,7 +17,7 @@ struct lua_State; struct BackgroundChange; /** @brief The version of the .ssc file format. */ -const static float STEPFILE_VERSION_NUMBER = 0.58f; +const static float STEPFILE_VERSION_NUMBER = 0.59f; /** @brief How many edits for this song can each profile have? */ const int MAX_EDITS_PER_SONG_PER_PROFILE = 5;