From 3d58d76fcb1e2517e28817b1fac93578a0b3ac6e Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Mon, 25 Jul 2011 04:35:51 -0400 Subject: [PATCH] Radar values fixed for KSF files. Yes, this causes a cache update. No, I don't care. --- src/NotesLoaderKSF.cpp | 2 -- src/Song.cpp | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/NotesLoaderKSF.cpp b/src/NotesLoaderKSF.cpp index 1d2735c8ad..979a25607b 100644 --- a/src/NotesLoaderKSF.cpp +++ b/src/NotesLoaderKSF.cpp @@ -776,8 +776,6 @@ bool KSFLoader::LoadFromDir( const RString &sDir, Song &out ) pNewNotes->SetFilename(dir + arrayKSFFileNames[i]); out.AddSteps( pNewNotes ); } - out.TidyUpData(false, true); - return true; } diff --git a/src/Song.cpp b/src/Song.cpp index 604953e83d..d62bc0c65d 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 = 196; +const int FILE_CACHE_VERSION = 197; /** @brief How long does a song sample last by default? */ const float DEFAULT_MUSIC_SAMPLE_LENGTH = 12.f;