aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/video/subtitle_card.h
diff options
context:
space:
mode:
authorTobia Tesan2014-10-15 21:18:00 +0200
committerTobia Tesan2014-10-15 21:36:47 +0200
commitd5ed8c29f1f97519bd72aec8585edf04ac46181f (patch)
treef206e86dc59ee08de618fba4f931fd98fc0ba295 /engines/wintermute/video/subtitle_card.h
parent2fc69d770c7f80b0f6027dd66a8cf4be401b2853 (diff)
downloadscummvm-rg350-d5ed8c29f1f97519bd72aec8585edf04ac46181f.tar.gz
scummvm-rg350-d5ed8c29f1f97519bd72aec8585edf04ac46181f.tar.bz2
scummvm-rg350-d5ed8c29f1f97519bd72aec8585edf04ac46181f.zip
WINTERMUTE: Turn _subtitles into Common::Array<SubtitleCard> in VideoSubtitler
This necessarily loses const in SubtitleCard's attributes
Diffstat (limited to 'engines/wintermute/video/subtitle_card.h')
-rw-r--r--engines/wintermute/video/subtitle_card.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/wintermute/video/subtitle_card.h b/engines/wintermute/video/subtitle_card.h
index 7b372c76ad..629df77287 100644
--- a/engines/wintermute/video/subtitle_card.h
+++ b/engines/wintermute/video/subtitle_card.h
@@ -42,9 +42,9 @@ public:
uint32 getStartFrame() const;
Common::String getText() const;
private:
- const BaseGame* _gameRef;
- const uint32 _endFrame;
- const uint32 _startFrame;
+ BaseGame *_gameRef;
+ uint32 _endFrame;
+ uint32 _startFrame;
Common::String _text;
};