[Scummvm-cvs-logs] SF.net SVN: scummvm:[48235] scummvm/trunk/engines/gob/inter_fascin.cpp
drmccoy at users.sourceforge.net
drmccoy at users.sourceforge.net
Thu Mar 11 07:15:51 CET 2010
Revision: 48235
http://scummvm.svn.sourceforge.net/scummvm/?rev=48235&view=rev
Author: drmccoy
Date: 2010-03-11 06:15:51 +0000 (Thu, 11 Mar 2010)
Log Message:
-----------
Loading the intro videos tira.imd and tirb.imd as early PreIMD
Modified Paths:
--------------
scummvm/trunk/engines/gob/inter_fascin.cpp
Modified: scummvm/trunk/engines/gob/inter_fascin.cpp
===================================================================
--- scummvm/trunk/engines/gob/inter_fascin.cpp 2010-03-11 06:15:23 UTC (rev 48234)
+++ scummvm/trunk/engines/gob/inter_fascin.cpp 2010-03-11 06:15:51 UTC (rev 48235)
@@ -131,7 +131,8 @@
void Inter_Fascination::oFascin_playTirb(OpGobParams ¶ms) {
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_playTira(OpGobParams ¶ms) {
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();
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list