diff options
author | Filippos Karapetis | 2009-01-07 22:06:15 +0000 |
---|---|---|
committer | Filippos Karapetis | 2009-01-07 22:06:15 +0000 |
commit | 9752501a07bd6e295a71cd0db72f7a06f14d0fa6 (patch) | |
tree | 112975b63c0a96cea545f567257cadbf4eed88b3 /engines/scumm/he | |
parent | 2e1fa58cf8907e344119391b830db8f6e1e1c1fa (diff) | |
download | scummvm-rg350-9752501a07bd6e295a71cd0db72f7a06f14d0fa6.tar.gz scummvm-rg350-9752501a07bd6e295a71cd0db72f7a06f14d0fa6.tar.bz2 scummvm-rg350-9752501a07bd6e295a71cd0db72f7a06f14d0fa6.zip |
videoIsLoaded() -> isVideoLoaded()
svn-id: r35777
Diffstat (limited to 'engines/scumm/he')
-rw-r--r-- | engines/scumm/he/animation_he.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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; } |