mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-16 22:58:09 +00:00
MOHAWK: Fix the Riven demo intro sequence (a regression from r55188)
svn-id: r55484
This commit is contained in:
parent
7bf8dda27f
commit
c81be09bcd
@ -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() {
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user