From cafdc6a88fa82c536e05495a0f4d374555f6c970 Mon Sep 17 00:00:00 2001 From: Paul Date: Fri, 10 Aug 2001 16:08:40 +0000 Subject: [PATCH] --- source/game/bosstext.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/game/bosstext.cpp b/source/game/bosstext.cpp index 15eddb74a..25bbc96eb 100644 --- a/source/game/bosstext.cpp +++ b/source/game/bosstext.cpp @@ -157,15 +157,18 @@ void CBossText::think(int _frames) if(pad&PAD_CROSS) { + CSoundMediator::playSfx(CSoundMediator::SFX_FRONT_END__SELECT); exit(); } else if(pad&PAD_DOWN&&m_currentPage==0) { m_currentPage=1; + CSoundMediator::playSfx(CSoundMediator::SFX_FRONT_END__MOVE_CURSOR); } else if(pad&PAD_UP&&m_currentPage==1) { m_currentPage=0; + CSoundMediator::playSfx(CSoundMediator::SFX_FRONT_END__MOVE_CURSOR); } } }