Fix editor crash if you don't save a new chart.

This commit is contained in:
Jason Felds
2011-06-24 01:09:37 -04:00
parent 0190ac0eca
commit 16d58dc0a4
2 changed files with 6 additions and 2 deletions
+4 -2
View File
@@ -960,8 +960,10 @@ void Player::Update( float fDeltaTime )
UpdateJudgedRows();
// Check for TapNote misses
UpdateTapNotesMissedOlderThan( GetMaxStepDistanceSeconds() );
if (!GAMESTATE->m_bInStepEditor)
{
UpdateTapNotesMissedOlderThan( GetMaxStepDistanceSeconds() );
}
// process transforms that are waiting to be applied
ApplyWaitingTransforms();
}