MOHAWK: Fix the Riven demo intro sequence (a regression from r55188)

svn-id: r55484
This commit is contained in:
Matthew Hoops 2011-01-23 22:08:14 +00:00
parent 7bf8dda27f
commit c81be09bcd
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ void VideoEntry::clear() {
start = Video::VideoTimestamp(0);
end = Video::VideoTimestamp(0xFFFFFFFF); // Largest possible, there is an endOfVideo() check anyway
filename.clear();
id = 0;
id = -1;
}
bool VideoEntry::endOfVideo() {

View File

@ -57,7 +57,7 @@ struct VideoEntry {
// Identification
Common::String filename; // External video files
uint16 id; // Internal Mohawk files
int id; // Internal Mohawk files
// Helper functions
Video::SeekableVideoDecoder *operator->() const { assert(video); return video; } // TODO: Remove this eventually