This commit is contained in:
parent
c9cab419ec
commit
d6ee366bb7
3 changed files with 35 additions and 3 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue