From d168a65016f037d7ae6fafd08219c5080e3bafa6 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 21 Mar 2004 23:07:46 +0000 Subject: [PATCH] fix Song::RevertFromDisk when playing autogen steps --- stepmania/src/Song.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/Song.cpp b/stepmania/src/Song.cpp index 97d72ae61d..5b19c34c2b 100644 --- a/stepmania/src/Song.cpp +++ b/stepmania/src/Song.cpp @@ -302,7 +302,7 @@ struct SongID { if( st == STEPS_TYPE_INVALID || dc == DIFFICULTY_INVALID ) return NULL; - Steps *ret = p->GetStepsByDifficulty( st, dc, false ); + Steps *ret = p->GetStepsByDifficulty( st, dc, true ); RAGE_ASSERT_M( ret, ssprintf("%i, %i", st, dc) ); // we had something selected before reloading, so it better still be there after! return ret; }