[Scummvm-cvs-logs] SF.net SVN: scummvm: [26891] scummvm/trunk/engines/parallaction/intro.cpp

peres001 at users.sourceforge.net peres001 at users.sourceforge.net
Sun May 20 18:15:35 CEST 2007


Revision: 26891
          http://scummvm.svn.sourceforge.net/scummvm/?rev=26891&view=rev
Author:   peres001
Date:     2007-05-20 09:15:35 -0700 (Sun, 20 May 2007)

Log Message:
-----------
Removed phony 'start game' message from Amiga demo.

Modified Paths:
--------------
    scummvm/trunk/engines/parallaction/intro.cpp

Modified: scummvm/trunk/engines/parallaction/intro.cpp
===================================================================
--- scummvm/trunk/engines/parallaction/intro.cpp	2007-05-20 16:13:16 UTC (rev 26890)
+++ scummvm/trunk/engines/parallaction/intro.cpp	2007-05-20 16:15:35 UTC (rev 26891)
@@ -159,17 +159,18 @@
 
 		_vm->_gfx->copyScreen(Gfx::kBitBack, Gfx::kBitFront);
 	}
-
 	debugC(1, kDebugLocation, "endIntro(): done showing credits");
 
-	_vm->_gfx->displayCenteredString(80, "CLICK MOUSE BUTTON TO START");
-	_vm->_gfx->updateScreen();
+	if ((_vm->getFeatures() & GF_DEMO) == 0) {
+		_vm->_gfx->displayCenteredString(80, "CLICK MOUSE BUTTON TO START");
+		_vm->_gfx->updateScreen();
 
-	waitUntilLeftClick();
+		waitUntilLeftClick();
 
-	if ((_vm->getFeatures() & GF_DEMO) == 0) {
 		_engineFlags &= ~kEngineMouse;
 		_vm->_menu->selectCharacter();
+	} else {
+		waitUntilLeftClick();
 	}
 
 	return;


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