This commit is contained in:
Paul 2001-07-24 15:06:30 +00:00
parent c9cab419ec
commit d6ee366bb7
3 changed files with 35 additions and 3 deletions

View file

@ -627,7 +627,15 @@ void CGameScene::think_playing(int _frames)
// Conversation think ( with pad debounce stuff.. )
if(CConversation::isActive())m_player->ignoreNewlyPressedButtonsOnPadThisThink();
CConversation::think(_frames);
if(!m_pauseMenu->isActive())
{
CConversation::think(_frames);
}
else
{
// Must be a better way to do this? :/
CConversation::ignoreNewlyPressedButtonsOnPadThisThink();
}
// Pause menu think ( with pad debounce stuff.. )
if(m_pauseMenu->isActive())m_player->ignoreNewlyPressedButtonsOnPadThisThink();