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

strangerke at users.sourceforge.net strangerke at users.sourceforge.net
Thu Oct 1 00:54:30 CEST 2009


Revision: 44504
          http://scummvm.svn.sourceforge.net/scummvm/?rev=44504&view=rev
Author:   strangerke
Date:     2009-09-30 22:54:30 +0000 (Wed, 30 Sep 2009)

Log Message:
-----------
Fascination - Suppress some warnings

Modified Paths:
--------------
    scummvm/trunk/engines/gob/inter_fascin.cpp

Modified: scummvm/trunk/engines/gob/inter_fascin.cpp
===================================================================
--- scummvm/trunk/engines/gob/inter_fascin.cpp	2009-09-30 22:54:00 UTC (rev 44503)
+++ scummvm/trunk/engines/gob/inter_fascin.cpp	2009-09-30 22:54:30 UTC (rev 44504)
@@ -109,7 +109,6 @@
 }
 
 void Inter_Fascination::oFascin_playTirb(OpGobParams &params) {
-	warning("Fascination Unknown GE Function 0");
 	warning("funcPlayImd with parameter : 'tirb.imd'");
 
 	if (_vm->_vidPlayer->primaryOpen("tirb.imd")) {
@@ -120,7 +119,6 @@
 }
 
 void Inter_Fascination::oFascin_playTira(OpGobParams &params) {
-	warning("Fascination Unknown GE Function 1");
 	warning("funcPlayImd with parameter : 'tira.imd'");
 	if (_vm->_vidPlayer->primaryOpen("tira.imd")) {
 		_vm->_vidPlayer->primaryPlay();
@@ -208,17 +206,11 @@
 	_vm->_draw->_winVarArrayStatus = _vm->_game->_script->readVarIndex();
 	_vm->_draw->_winVarArrayLimitsX = _vm->_game->_script->readVarIndex();
 	_vm->_draw->_winVarArrayLimitsY = _vm->_game->_script->readVarIndex();
-	warning("Inter_Fascination::oFascin_setWinSize lmax %d hmax %d x %d y %d l %d h %d stat %d limx %d limy %d",
-			 _vm->_draw->_winMaxWidth, _vm->_draw->_winMaxHeight,
-			 _vm->_draw->_winVarArrayLeft,  _vm->_draw->_winVarArrayTop,
-			 _vm->_draw->_winVarArrayWidth, _vm->_draw->_winVarArrayHeight, _vm->_draw->_winVarArrayStatus, 
-			 _vm->_draw->_winVarArrayLimitsX, _vm->_draw->_winVarArrayLimitsY);
 }
 
 void Inter_Fascination::oFascin_closeWin() {
 	int16 id;
 	_vm->_game->_script->evalExpr(&id);
-	warning("Inter_Fascination::closeWin id %d", id);
 	_vm->_draw->activeWin(id);
 	_vm->_draw->closeWin(id);	
 }
@@ -226,7 +218,6 @@
 void Inter_Fascination::oFascin_activeWin() {
 	int16 id;
 	_vm->_game->_script->evalExpr(&id);
-	warning("Inter_Fascination::activeWin id %d", id);
 	_vm->_draw->activeWin(id);
 }
 
@@ -234,7 +225,6 @@
 	int16 retVal,id;
 	_vm->_game->_script->evalExpr(&id);
 	retVal = _vm->_game->_script->readVarIndex();
-	warning("Inter_Fascination::openWin index %d, id %d", retVal, id);
 	WRITE_VAR((retVal / 4), (int32) _vm->_draw->openWin(id));
 }
 
@@ -242,14 +232,12 @@
 	int16 expr;
 	_vm->_game->_script->evalExpr(&expr);
 	_vm->_draw->_renderFlags = expr;
-	warning("Inter_Fascination::oFascin_setRenderFlags: _draw_renderFlags <- %d",expr);
 }
 
 void Inter_Fascination::oFascin_setWinFlags() {
 	int16 expr;
 	_vm->_game->_script->evalExpr(&expr);
 	_vm->_global->_curWinId = expr;
-	warning("Inter_Fascination::oFascin_setWinFlags: _global_DEVwnd <- %d",expr);
 }
 
 void Inter_Fascination::oFascin_playProtracker(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