fix bHeld not set when PadStickSeconds is enabled

This commit is contained in:
Glenn Maynard
2005-04-13 22:30:56 +00:00
parent c013c78577
commit 5d0c30889f
+1 -1
View File
@@ -1213,7 +1213,7 @@ void Player::CrossedMineRow( int iNoteRow )
{ {
float fSecsHeld = INPUTMAPPER->GetSecsHeld( GameI ); float fSecsHeld = INPUTMAPPER->GetSecsHeld( GameI );
if( fSecsHeld >= PREFSMAN->m_fPadStickSeconds ) if( fSecsHeld >= PREFSMAN->m_fPadStickSeconds )
Step( t, now+(-PREFSMAN->m_fPadStickSeconds) ); Step( t, now+(-PREFSMAN->m_fPadStickSeconds), true );
} }
else else
{ {