diff options
| author | Sven Hesse | 2009-02-21 15:58:50 +0000 | 
|---|---|---|
| committer | Sven Hesse | 2009-02-21 15:58:50 +0000 | 
| commit | e643565c2c6a6b9cae13bd338261706ffb597a0e (patch) | |
| tree | ba05a293f8a72f03813b442d76165145da91aec4 /engines/gob/gob.cpp | |
| parent | e514d9780afa2703c6293c782e1f50712ad764fa (diff) | |
| download | scummvm-rg350-e643565c2c6a6b9cae13bd338261706ffb597a0e.tar.gz scummvm-rg350-e643565c2c6a6b9cae13bd338261706ffb597a0e.tar.bz2 scummvm-rg350-e643565c2c6a6b9cae13bd338261706ffb597a0e.zip  | |
Compensate small lags in Util::waitEndFrame(), so that the CD audio intro sequences in Gob1 and Gob2 CD hopefully won't de-sync so easily
svn-id: r38702
Diffstat (limited to 'engines/gob/gob.cpp')
| -rw-r--r-- | engines/gob/gob.cpp | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/gob/gob.cpp b/engines/gob/gob.cpp index ced85357a3..dc11d29f55 100644 --- a/engines/gob/gob.cpp +++ b/engines/gob/gob.cpp @@ -265,6 +265,7 @@ void GobEngine::pauseEngineIntern(bool pause) {  		uint32 duration = _system->getMillis() - _pauseStart;  		_vm->_vidPlayer->notifyPaused(duration); +		_vm->_util->notifyPaused(duration);  		_vm->_game->_startTimeKey += duration;  		_vm->_draw->_cursorTimeKey += duration;  | 
