aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Hesse2010-03-11 06:15:51 +0000
committerSven Hesse2010-03-11 06:15:51 +0000
commit8191092c18ef68cb4f085d26fdf615a61eb05ef0 (patch)
treece586e7514b0addc18565eb059d574f25049d40a
parentc8d5f21010808f572016fbc13da424e67978f933 (diff)
downloadscummvm-rg350-8191092c18ef68cb4f085d26fdf615a61eb05ef0.tar.gz
scummvm-rg350-8191092c18ef68cb4f085d26fdf615a61eb05ef0.tar.bz2
scummvm-rg350-8191092c18ef68cb4f085d26fdf615a61eb05ef0.zip
Loading the intro videos tira.imd and tirb.imd as early PreIMD
svn-id: r48235
-rw-r--r--engines/gob/inter_fascin.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/engines/gob/inter_fascin.cpp b/engines/gob/inter_fascin.cpp
index 0e94ac7a65..5738197539 100644
--- a/engines/gob/inter_fascin.cpp
+++ b/engines/gob/inter_fascin.cpp
@@ -131,7 +131,8 @@ bool Inter_Fascination::oFascin_copySprite(OpFuncParams &params) {
void Inter_Fascination::oFascin_playTirb(OpGobParams &params) {
warning("funcPlayImd with parameter : 'tirb.imd'");
- if (_vm->_vidPlayer->primaryOpen("tirb", 128, 80)) {
+ if (_vm->_vidPlayer->primaryOpen("tirb", 150, 88, VideoPlayer::kFlagFrontSurface,
+ VideoPlayer::kVideoTypePreIMD, 128, 80)) {
_vm->_vidPlayer->primaryPlay();
_vm->_vidPlayer->primaryClose();
}
@@ -140,7 +141,8 @@ void Inter_Fascination::oFascin_playTirb(OpGobParams &params) {
void Inter_Fascination::oFascin_playTira(OpGobParams &params) {
warning("funcPlayImd with parameter : 'tira.imd'");
- if (_vm->_vidPlayer->primaryOpen("tira", 128, 80)) {
+ if (_vm->_vidPlayer->primaryOpen("tira", 88, 66, VideoPlayer::kFlagFrontSurface,
+ VideoPlayer::kVideoTypePreIMD, 128, 80)) {
_vm->_vidPlayer->primaryPlay();
_vm->_vidPlayer->primaryClose();
}