aboutsummaryrefslogtreecommitdiff
path: root/engines/mohawk/livingbooks.cpp
diff options
context:
space:
mode:
authorMatthew Hoops2015-07-15 23:59:21 -0400
committerMatthew Hoops2015-07-17 20:05:00 -0400
commit7e6c8be7db2449c1f793b6fb01af5613282e7f27 (patch)
tree02fd969920a4c0a4aad285462eee2050885e620e /engines/mohawk/livingbooks.cpp
parent95b1288329b12dce9d96a1a97a28f1bc457d605f (diff)
downloadscummvm-rg350-7e6c8be7db2449c1f793b6fb01af5613282e7f27.tar.gz
scummvm-rg350-7e6c8be7db2449c1f793b6fb01af5613282e7f27.tar.bz2
scummvm-rg350-7e6c8be7db2449c1f793b6fb01af5613282e7f27.zip
MOHAWK: Make video handles actual objects
Diffstat (limited to 'engines/mohawk/livingbooks.cpp')
-rw-r--r--engines/mohawk/livingbooks.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mohawk/livingbooks.cpp b/engines/mohawk/livingbooks.cpp
index 14ce4bab52..6874f2420e 100644
--- a/engines/mohawk/livingbooks.cpp
+++ b/engines/mohawk/livingbooks.cpp
@@ -3791,7 +3791,7 @@ LBMovieItem::~LBMovieItem() {
void LBMovieItem::update() {
if (_playing) {
VideoHandle videoHandle = _vm->_video->findVideoHandle(_resourceId);
- if (videoHandle == NULL_VID_HANDLE || _vm->_video->endOfVideo(videoHandle))
+ if (!videoHandle || videoHandle->endOfVideo())
done(true);
}