From 0837647bcaffdebbb5e612387c9e3056323902d1 Mon Sep 17 00:00:00 2001 From: Charles Date: Thu, 2 Aug 2001 21:26:55 +0000 Subject: [PATCH] --- source/enemy/nhcrab.cpp | 2 +- source/enemy/npc.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/enemy/nhcrab.cpp b/source/enemy/nhcrab.cpp index d84a15c54..860848a12 100644 --- a/source/enemy/nhcrab.cpp +++ b/source/enemy/nhcrab.cpp @@ -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 ); } } diff --git a/source/enemy/npc.cpp b/source/enemy/npc.cpp index e0fe9c4cb..2d6c9d0d3 100644 --- a/source/enemy/npc.cpp +++ b/source/enemy/npc.cpp @@ -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 )