aboutsummaryrefslogtreecommitdiff
path: root/engines/mohawk/video.cpp
diff options
context:
space:
mode:
authorMax Horn2011-02-09 00:14:06 +0000
committerMax Horn2011-02-09 00:14:06 +0000
commitd7370f11e4369f9bd110ec6200862f95e49a3149 (patch)
treeddd78d5637643d42a00f1c6431dfccdce179512d /engines/mohawk/video.cpp
parentee7056542c258e6ed920c0b04f3d50f3bc135990 (diff)
downloadscummvm-rg350-d7370f11e4369f9bd110ec6200862f95e49a3149.tar.gz
scummvm-rg350-d7370f11e4369f9bd110ec6200862f95e49a3149.tar.bz2
scummvm-rg350-d7370f11e4369f9bd110ec6200862f95e49a3149.zip
VIDEO: Remove unused SeekableVideoDecoder::seekToFrame method
svn-id: r55844
Diffstat (limited to 'engines/mohawk/video.cpp')
-rw-r--r--engines/mohawk/video.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/engines/mohawk/video.cpp b/engines/mohawk/video.cpp
index ccb86cc54f..9bf202083a 100644
--- a/engines/mohawk/video.cpp
+++ b/engines/mohawk/video.cpp
@@ -515,11 +515,6 @@ void VideoManager::seekToTime(VideoHandle handle, Audio::Timestamp time) {
_videoStreams[handle]->seekToTime(time);
}
-void VideoManager::seekToFrame(VideoHandle handle, uint32 frame) {
- assert(handle != NULL_VID_HANDLE);
- _videoStreams[handle]->seekToFrame(frame);
-}
-
void VideoManager::setVideoLooping(VideoHandle handle, bool loop) {
assert(handle != NULL_VID_HANDLE);
_videoStreams[handle].loop = loop;