bug fix: HighScores for edits don't match correctly because the hash is ignored

This commit is contained in:
Chris Danford
2004-11-24 16:32:21 +00:00
parent 8fe7c75a9a
commit 8e476b97c0
3 changed files with 9 additions and 3 deletions
+2 -2
View File
@@ -157,11 +157,11 @@ Steps *StepsID::ToSteps( const Song *p, bool bAllowNull, bool bUseCache ) const
Steps *ret = NULL;
if( dc == DIFFICULTY_EDIT )
{
ret = p->GetSteps( st, dc, -1, -1, sDescription, true );
ret = p->GetSteps( st, dc, -1, -1, sDescription, uHash, true );
}
else
{
ret = p->GetSteps( st, dc, -1, -1, "", true );
ret = p->GetSteps( st, dc, -1, -1, "", 0, true );
}
if( !bAllowNull )