aboutsummaryrefslogtreecommitdiff
path: root/engines/mohawk/myst_areas.cpp
diff options
context:
space:
mode:
authorMatthew Hoops2011-01-18 20:30:16 +0000
committerMatthew Hoops2011-01-18 20:30:16 +0000
commit0761ab7b3a5789815e65e49d40d92539f10c481c (patch)
tree7d67b9c3714cca45e5a1597bba1a00cc39abfcd4 /engines/mohawk/myst_areas.cpp
parentbf06c49544a63f927889e20617b2b1c3edc815a4 (diff)
downloadscummvm-rg350-0761ab7b3a5789815e65e49d40d92539f10c481c.tar.gz
scummvm-rg350-0761ab7b3a5789815e65e49d40d92539f10c481c.tar.bz2
scummvm-rg350-0761ab7b3a5789815e65e49d40d92539f10c481c.zip
MOHAWK: Rename some VideoManager functions so we have some unified naming between versions
svn-id: r55312
Diffstat (limited to 'engines/mohawk/myst_areas.cpp')
-rw-r--r--engines/mohawk/myst_areas.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/mohawk/myst_areas.cpp b/engines/mohawk/myst_areas.cpp
index c69fd47633..2388478ba3 100644
--- a/engines/mohawk/myst_areas.cpp
+++ b/engines/mohawk/myst_areas.cpp
@@ -206,10 +206,10 @@ VideoHandle MystResourceType6::playMovie() {
// If the video is not running, play it
if (handle == NULL_VID_HANDLE || _vm->_video->endOfVideo(handle)) {
if (_playBlocking) {
- _vm->_video->playMovie(_videoFile, _left, _top);
+ _vm->_video->playMovieBlocking(_videoFile, _left, _top);
handle = NULL_VID_HANDLE;
} else {
- handle = _vm->_video->playBackgroundMovie(_videoFile, _left, _top, _loop);
+ handle = _vm->_video->playMovie(_videoFile, _left, _top, _loop);
}
}