[Scummvm-cvs-logs] SF.net SVN: scummvm:[47763] scummvm/trunk/engines/gob/inter_fascin.cpp

strangerke at users.sourceforge.net strangerke at users.sourceforge.net
Sun Jan 31 18:57:08 CET 2010


Revision: 47763
          http://scummvm.svn.sourceforge.net/scummvm/?rev=47763&view=rev
Author:   strangerke
Date:     2010-01-31 17:57:07 +0000 (Sun, 31 Jan 2010)

Log Message:
-----------
Fascination - Partially fix the intro

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-01-31 17:45:22 UTC (rev 47762)
+++ scummvm/trunk/engines/gob/inter_fascin.cpp	2010-01-31 17:57:07 UTC (rev 47763)
@@ -111,20 +111,19 @@
 void Inter_Fascination::oFascin_playTirb(OpGobParams &params) {
 	warning("funcPlayImd with parameter : 'tirb.imd'");
 
-	if (_vm->_vidPlayer->primaryOpen("tirb.imd")) {
+	if (_vm->_vidPlayer->primaryOpen("tirb", 128, 80)) {
 		_vm->_vidPlayer->primaryPlay();
 		_vm->_vidPlayer->primaryClose();
 	}
-	_vm->_draw->closeScreen();
 }
 
 void Inter_Fascination::oFascin_playTira(OpGobParams &params) {
 	warning("funcPlayImd with parameter : 'tira.imd'");
-	if (_vm->_vidPlayer->primaryOpen("tira.imd")) {
+
+	if (_vm->_vidPlayer->primaryOpen("tira", 128, 80)) {
 		_vm->_vidPlayer->primaryPlay();
 		_vm->_vidPlayer->primaryClose();
 	}
-	_vm->_draw->closeScreen();
 }
 
 void Inter_Fascination::oFascin_loadExtasy(OpGobParams &params) {


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