aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/video/video_subtitler.h
diff options
context:
space:
mode:
authorTobia Tesan2014-09-09 15:30:47 +0200
committerTobia Tesan2014-10-15 21:36:47 +0200
commitc6930d9a64d6d61ece2f0b531ad93459d2730150 (patch)
tree8deb4e6154255ca14d89fd9daa6729423e4ee428 /engines/wintermute/video/video_subtitler.h
parentebb48a1704b236d986539dbc716aae2d73921bb7 (diff)
downloadscummvm-rg350-c6930d9a64d6d61ece2f0b531ad93459d2730150.tar.gz
scummvm-rg350-c6930d9a64d6d61ece2f0b531ad93459d2730150.tar.bz2
scummvm-rg350-c6930d9a64d6d61ece2f0b531ad93459d2730150.zip
WINTERMUTE: Use int32 for _lastSample in VideoSubtitler
We are thus making room for the sentinel == -1
Diffstat (limited to 'engines/wintermute/video/video_subtitler.h')
-rw-r--r--engines/wintermute/video/video_subtitler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/wintermute/video/video_subtitler.h b/engines/wintermute/video/video_subtitler.h
index 32e4368daf..f2dcdf161e 100644
--- a/engines/wintermute/video/video_subtitler.h
+++ b/engines/wintermute/video/video_subtitler.h
@@ -47,7 +47,7 @@ public:
void update(uint32 frame);
private:
Common::Array<SubtitleCard *> _subtitles;
- uint32 _lastSample;
+ int32 _lastSample;
};
} // End of namespace Wintermute