aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/videoplayer.cpp
diff options
context:
space:
mode:
authorSven Hesse2009-07-24 21:36:42 +0000
committerSven Hesse2009-07-24 21:36:42 +0000
commit3668895abce7445077350f88c55175ff1c66b05f (patch)
tree9cafedb01f5a4a81ba45c1bf4c559121f9889be8 /engines/gob/videoplayer.cpp
parent54b63ac239a8b555b191d40733e05090b3b08e3a (diff)
downloadscummvm-rg350-3668895abce7445077350f88c55175ff1c66b05f.tar.gz
scummvm-rg350-3668895abce7445077350f88c55175ff1c66b05f.tar.bz2
scummvm-rg350-3668895abce7445077350f88c55175ff1c66b05f.zip
CoktelVideo cleanup: Splitting up some IMD methods and removing the obsolete notifyPaused()
svn-id: r42715
Diffstat (limited to 'engines/gob/videoplayer.cpp')
-rw-r--r--engines/gob/videoplayer.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/engines/gob/videoplayer.cpp b/engines/gob/videoplayer.cpp
index 43395db829..a3a9dde892 100644
--- a/engines/gob/videoplayer.cpp
+++ b/engines/gob/videoplayer.cpp
@@ -797,13 +797,4 @@ void VideoPlayer::evalBgShading(Graphics::CoktelVideo &video) {
_vm->_sound->bgUnshade();
}
-void VideoPlayer::notifyPaused(uint32 duration) {
- if (_primaryVideo->isOpen())
- _primaryVideo->getVideo()->notifyPaused(duration);
-
- for (uint i = 0; i < _videoSlots.size(); i++)
- if (_videoSlots[i] && _videoSlots[i]->isOpen())
- _videoSlots[i]->getVideo()->notifyPaused(duration);
-}
-
} // End of namespace Gob