[Scummvm-cvs-logs] SF.net SVN: scummvm:[39892] scummvm/trunk/engines/sci/sci.cpp

mthreepwood at users.sourceforge.net mthreepwood at users.sourceforge.net
Tue Apr 7 17:05:53 CEST 2009


Revision: 39892
          http://scummvm.svn.sourceforge.net/scummvm/?rev=39892&view=rev
Author:   mthreepwood
Date:     2009-04-07 15:05:53 +0000 (Tue, 07 Apr 2009)

Log Message:
-----------
Print out the SCI interpreter version and not the resource version when saying what version we're emulating

Modified Paths:
--------------
    scummvm/trunk/engines/sci/sci.cpp

Modified: scummvm/trunk/engines/sci/sci.cpp
===================================================================
--- scummvm/trunk/engines/sci/sci.cpp	2009-04-07 13:38:51 UTC (rev 39891)
+++ scummvm/trunk/engines/sci/sci.cpp	2009-04-07 15:05:53 UTC (rev 39892)
@@ -287,9 +287,9 @@
 	}
 
 	printf("Emulating SCI version %d.%03d.%03d\n",
-	       SCI_VERSION_MAJOR(_resmgr->_sciVersion),
-	       SCI_VERSION_MINOR(_resmgr->_sciVersion),
-	       SCI_VERSION_PATCHLEVEL(_resmgr->_sciVersion));
+	       SCI_VERSION_MAJOR(version),
+	       SCI_VERSION_MINOR(version),
+	       SCI_VERSION_PATCHLEVEL(version));
 
 	game_run(&gamestate); // Run the game
 


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