fix Song::RevertFromDisk when playing autogen steps

This commit is contained in:
Glenn Maynard
2004-03-21 23:07:46 +00:00
parent 7b78dbcf1c
commit d168a65016
+1 -1
View File
@@ -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;
}