aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/wintermute/video/video_subtitler.h5
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