diff options
author | Tobia Tesan | 2014-11-05 19:07:03 +0100 |
---|---|---|
committer | Tobia Tesan | 2014-11-05 19:07:03 +0100 |
commit | 0a2c1a809f1335f2d259fa7e3070405232687b00 (patch) | |
tree | e738f8bc61213aab4c106b362b11d5ea645c7e99 /engines | |
parent | e12f30ed030fc719b56e2be8418707f258af05d5 (diff) | |
download | scummvm-rg350-0a2c1a809f1335f2d259fa7e3070405232687b00.tar.gz scummvm-rg350-0a2c1a809f1335f2d259fa7e3070405232687b00.tar.bz2 scummvm-rg350-0a2c1a809f1335f2d259fa7e3070405232687b00.zip |
WINTERMUTE: Keep _[show|current]Subtitle private in video_subtitler.h
Diffstat (limited to 'engines')
-rw-r--r-- | engines/wintermute/video/video_subtitler.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/engines/wintermute/video/video_subtitler.h b/engines/wintermute/video/video_subtitler.h index c1730c84fd..f97461cd87 100644 --- a/engines/wintermute/video/video_subtitler.h +++ b/engines/wintermute/video/video_subtitler.h @@ -39,15 +39,14 @@ class VideoSubtitler : public: VideoSubtitler(BaseGame *inGame); virtual ~VideoSubtitler(void); - - bool _showSubtitle; - uint32 _currentSubtitle; bool loadSubtitles(const Common::String &filename, const Common::String &subtitleFile); void display(); void update(uint32 frame); private: Common::Array<SubtitleCard> _subtitles; int32 _lastSample; + bool _showSubtitle; + uint32 _currentSubtitle; }; } // End of namespace Wintermute |