Advertisement
Guest User

Untitled

a guest
Feb 10th, 2015
421
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 0.99 KB | None | 0 0
  1. diff -rupN scummvm-orig/engines/sci/sci.cpp scummvm/engines/sci/sci.cpp
  2. --- scummvm-orig/engines/sci/sci.cpp    2015-02-10 15:12:02.694551000 +0200
  3. +++ scummvm/engines/sci/sci.cpp 2015-02-10 19:17:29.231857923 +0200
  4. @@ -872,9 +872,7 @@ void SciEngine::setLauncherLanguage() {
  5.  }
  6.  
  7.  void SciEngine::pauseEngineIntern(bool pause) {
  8. -   _mixer->pauseAll(pause);
  9.     if (_soundCmd)
  10. -       _soundCmd->pauseAll(pause);
  11.  }
  12.  
  13.  void SciEngine::syncSoundSettings() {
  14. diff -rupN scummvm-orig/engines/scumm/scumm.cpp scummvm/engines/scumm/scumm.cpp
  15. --- scummvm-orig/engines/scumm/scumm.cpp    2015-02-10 15:12:02.771546000 +0200
  16. +++ scummvm/engines/scumm/scumm.cpp 2015-02-10 19:17:30.071803958 +0200
  17. @@ -2651,9 +2651,7 @@ bool ScummEngine::startManiac() {
  18.  
  19.  void ScummEngine::pauseEngineIntern(bool pause) {
  20.     if (pause) {
  21. -       // Pause sound & video
  22. -       _oldSoundsPaused = _sound->_soundsPaused;
  23. -       _sound->pauseSounds(true);
  24. +
  25.  
  26.     } else {
  27.         // Update the screen to make it less likely that the player will see a
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement