fix edit high score hash saving

don't save machine high scores for edits
This commit is contained in:
Chris Danford
2004-04-23 02:19:45 +00:00
parent ab1d3bfd0e
commit b28f440883
2 changed files with 8 additions and 2 deletions
+2
View File
@@ -129,12 +129,14 @@ void StepsID::FromSteps( const Steps *p )
st = STEPS_TYPE_INVALID;
dc = DIFFICULTY_INVALID;
sDescription = "";
uHash = 0;
}
else
{
st = p->m_StepsType;
dc = p->GetDifficulty();
sDescription = p->GetDescription();
uHash = p->GetHash();
}
}