diff --git a/stepmania/src/SongCacheIndex.cpp b/stepmania/src/SongCacheIndex.cpp index 40e1ba7bbd..c5d848f06a 100644 --- a/stepmania/src/SongCacheIndex.cpp +++ b/stepmania/src/SongCacheIndex.cpp @@ -35,6 +35,8 @@ static void EmptyDir( CString dir ) { if (0 == stricmp( asCacheFileNames[i], ".cvsignore" )) // don't delete .cvsignore files continue; + if (0 == stricmp( asCacheFileNames[i], "instructions.txt" )) // don't delete the instructions file. + continue; remove( dir + asCacheFileNames[i] ); }