aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/video/video_subtitler.h
diff options
context:
space:
mode:
authorTobia Tesan2014-10-15 21:15:07 +0200
committerTobia Tesan2014-10-15 21:36:45 +0200
commita4d5d1458102959bdc26fc73184e2cfc5f918894 (patch)
tree159a23bd18b3599bb3a21cce23a55732bb371a70 /engines/wintermute/video/video_subtitler.h
parent2acb2f558c4ee018ad30ce6fb6e8412d175b6c46 (diff)
downloadscummvm-rg350-a4d5d1458102959bdc26fc73184e2cfc5f918894.tar.gz
scummvm-rg350-a4d5d1458102959bdc26fc73184e2cfc5f918894.tar.bz2
scummvm-rg350-a4d5d1458102959bdc26fc73184e2cfc5f918894.zip
WINTERMUTE: Turn display() and update() into void functions.
No idea why they were bools in the first place.
Diffstat (limited to 'engines/wintermute/video/video_subtitler.h')
-rw-r--r--engines/wintermute/video/video_subtitler.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/wintermute/video/video_subtitler.h b/engines/wintermute/video/video_subtitler.h
index 2940d69785..8c57fd290f 100644
--- a/engines/wintermute/video/video_subtitler.h
+++ b/engines/wintermute/video/video_subtitler.h
@@ -43,8 +43,8 @@ public:
bool _showSubtitle;
uint _currentSubtitle;
bool loadSubtitles(const Common::String &filename, const Common::String &subtitleFile);
- bool display();
- bool update(uint frame);
+ void display();
+ void update(uint frame);
private:
Common::Array<VideoSubtitle *> _subtitles;
long _lastSample;