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

svn-id: r39892
This commit is contained in:
Matthew Hoops 2009-04-07 15:05:53 +00:00
parent d700bc57db
commit 2d83233503

View File

@ -287,9 +287,9 @@ Common::Error SciEngine::run() {
}
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