This commit is contained in:
Charles 2001-08-02 21:26:55 +00:00
parent 0d8d120c4d
commit 0837647bca
2 changed files with 2 additions and 2 deletions

View File

@ -259,6 +259,6 @@ void CNpcHermitCrabEnemy::processMovementModifier( int _frames, s32 distX, s32 d
if( m_soundId == NOT_PLAYING )
{
m_soundId = (int) CSoundMediator::playSfx( CSoundMediator::SFX_HERMIT_CRAB_MOVE, true );
m_soundId = (int) CSoundMediator::playSfx( CSoundMediator::SFX_HERMIT_CRAB_MOVE, true, true );
}
}

View File

@ -1125,7 +1125,7 @@ void CNpcEnemy::processMovement(int _frames)
if ( m_soundId == NOT_PLAYING && m_data[m_type].moveSfx < CSoundMediator::NUM_SFXIDS )
{
m_soundId = (int) CSoundMediator::playSfx( m_data[m_type].moveSfx, true, true );
m_soundId = (int) CSoundMediator::playSfx( m_data[m_type].moveSfx, true );
}
switch( m_movementFunc )