Skip to content

Commit

Permalink
KYRA: fix pauseEngineIntern regression in MR
Browse files Browse the repository at this point in the history
  • Loading branch information
athrxx committed Jul 4, 2011
1 parent 38d18a6 commit 7e2f7dc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions engines/kyra/kyra_mr.cpp
Expand Up @@ -1195,6 +1195,11 @@ void KyraEngine_MR::updateMouse() {
}
}

void KyraEngine_MR::pauseEngineIntern(bool pause) {
_mixer->pauseAll(pause);
_timer->pause(pause);
}

#pragma mark -

void KyraEngine_MR::makeCharFacingMouse() {
Expand Down
2 changes: 2 additions & 0 deletions engines/kyra/kyra_mr.h
Expand Up @@ -105,6 +105,8 @@ friend class GUI_MR;
void updateWithText();
void updateMouse();

void pauseEngineIntern(bool pause);

// sound specific
private:
void playMenuAudioFile();
Expand Down

0 comments on commit 7e2f7dc

Please sign in to comment.