From 9752501a07bd6e295a71cd0db72f7a06f14d0fa6 Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Wed, 7 Jan 2009 22:06:15 +0000 Subject: videoIsLoaded() -> isVideoLoaded() svn-id: r35777 --- engines/scumm/he/animation_he.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'engines/scumm') diff --git a/engines/scumm/he/animation_he.cpp b/engines/scumm/he/animation_he.cpp index 1915a05a94..4a64f16f42 100644 --- a/engines/scumm/he/animation_he.cpp +++ b/engines/scumm/he/animation_he.cpp @@ -40,13 +40,13 @@ MoviePlayer::MoviePlayer(ScummEngine_v90he *vm, Audio::Mixer *mixer) } int MoviePlayer::getImageNum() { - if (!videoIsLoaded()) + if (!isVideoLoaded()) return 0; return _wizResNum; } int MoviePlayer::load(const char *filename, int flags, int image) { - if (videoIsLoaded()) { + if (isVideoLoaded()) { closeFile(); } @@ -67,7 +67,7 @@ int MoviePlayer::load(const char *filename, int flags, int image) { } void MoviePlayer::handleNextFrame() { - if (!videoIsLoaded()) { + if (!isVideoLoaded()) { return; } -- cgit v1.2.3