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 /graphics/video | |
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 'graphics/video')
-rw-r--r-- | graphics/video/video_player.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/video/video_player.h b/graphics/video/video_player.h index 18483043a7..ea9122499f 100644 --- a/graphics/video/video_player.h +++ b/graphics/video/video_player.h @@ -107,7 +107,7 @@ public: /** * Returns if a video file is loaded or not */ - bool videoIsLoaded() { return (_fileStream != NULL); } + bool isVideoLoaded() { return (_fileStream != NULL); } /** * Set RGB palette, based on current frame |