From b71570b4c8cae4ea42a18ecca5257c97df460aa5 Mon Sep 17 00:00:00 2001 From: Einar Johan Trøan Sømåen Date: Wed, 17 Apr 2013 21:14:20 +0200 Subject: WINTERMUTE: Improve const-usage in VideoTheoraPlayer. --- engines/wintermute/video/video_theora_player.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'engines/wintermute/video/video_theora_player.cpp') diff --git a/engines/wintermute/video/video_theora_player.cpp b/engines/wintermute/video/video_theora_player.cpp index 18498bfb41..3777eede10 100644 --- a/engines/wintermute/video/video_theora_player.cpp +++ b/engines/wintermute/video/video_theora_player.cpp @@ -335,7 +335,7 @@ bool VideoTheoraPlayer::update() { } ////////////////////////////////////////////////////////////////////////// -uint32 VideoTheoraPlayer::getMovieTime() { +uint32 VideoTheoraPlayer::getMovieTime() const { if (!_playbackStarted) { return 0; } else { @@ -432,7 +432,7 @@ bool VideoTheoraPlayer::setAlphaImage(const Common::String &filename) { } ////////////////////////////////////////////////////////////////////////// -byte VideoTheoraPlayer::getAlphaAt(int x, int y) { +byte VideoTheoraPlayer::getAlphaAt(int x, int y) const { if (_alphaImage) { return _alphaImage->getAlphaAt(x, y); } else { @@ -525,7 +525,7 @@ bool VideoTheoraPlayer::initializeSimple() { } ////////////////////////////////////////////////////////////////////////// -BaseSurface *VideoTheoraPlayer::getTexture() { +BaseSurface *VideoTheoraPlayer::getTexture() const { return _texture; } -- cgit v1.2.3