diff options
| author | Filippos Karapetis | 2009-06-02 19:03:43 +0000 |
|---|---|---|
| committer | Filippos Karapetis | 2009-06-02 19:03:43 +0000 |
| commit | 780926991e369cefd2409a1149f3bcee4aa9a5c9 (patch) | |
| tree | dd78873ec95c17a6a99f26b18ed2cf75b3cea5d2 /engines/sci/sci.cpp | |
| parent | 98f64cfa2f76a5faa1cdea5c47e175aea2e75940 (diff) | |
| download | scummvm-rg350-780926991e369cefd2409a1149f3bcee4aa9a5c9.tar.gz scummvm-rg350-780926991e369cefd2409a1149f3bcee4aa9a5c9.tar.bz2 scummvm-rg350-780926991e369cefd2409a1149f3bcee4aa9a5c9.zip | |
Moved some more console commands to ScummVM's debug console
svn-id: r41126
Diffstat (limited to 'engines/sci/sci.cpp')
| -rw-r--r-- | engines/sci/sci.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/sci/sci.cpp b/engines/sci/sci.cpp index a7e2541792..52e2798b23 100644 --- a/engines/sci/sci.cpp +++ b/engines/sci/sci.cpp @@ -308,4 +308,10 @@ Common::String SciEngine::unwrapFilename(const Common::String &name) const { return name; } +void SciEngine::pauseEngineIntern(bool pause) { + // TODO: pause music and game script execution here + + _mixer->pauseAll(pause); +} + } // End of namespace Sci |
