[Scummvm-cvs-logs] SF.net SVN: scummvm: [32303] scummvm/trunk/engines/drascula/animation.cpp

sev at users.sourceforge.net sev at users.sourceforge.net
Mon May 26 22:18:27 CEST 2008


Revision: 32303
          http://scummvm.svn.sourceforge.net/scummvm/?rev=32303&view=rev
Author:   sev
Date:     2008-05-26 13:18:27 -0700 (Mon, 26 May 2008)

Log Message:
-----------
Fix delays against original

Modified Paths:
--------------
    scummvm/trunk/engines/drascula/animation.cpp

Modified: scummvm/trunk/engines/drascula/animation.cpp
===================================================================
--- scummvm/trunk/engines/drascula/animation.cpp	2008-05-26 20:14:25 UTC (rev 32302)
+++ scummvm/trunk/engines/drascula/animation.cpp	2008-05-26 20:18:27 UTC (rev 32303)
@@ -870,7 +870,7 @@
 	talk_ciego(_textd[_lang][75],"d75.als", _textd1[_lang][75 - TEXTD_START]);
 	copyBackground(0, 0, 0, 0, 320, 200, dir_dibujo1, dir_zona_pantalla);
 	updateScreen(0, 0, 0, 0, 320, 200, dir_zona_pantalla);
-	_system->delayMillis(1);
+	_system->delayMillis(1000);
 	talk_hacker(_textd[_lang][64], "d64.als");
 	talk_ciego(_textd[_lang][76], "d76.als", _textd1[_lang][76 - TEXTD_START]);
 
@@ -1016,9 +1016,9 @@
 		goto asco;
 
 	if (_lang == kSpanish)
-		_system->delayMillis(3);
+		_system->delayMillis(3000);
 	else
-		_system->delayMillis(4);
+		_system->delayMillis(4000);
 
 	key = getscan();
 	if (key != 0)
@@ -1043,9 +1043,9 @@
 		goto asco;
 
 	if (_lang == kSpanish)
-		_system->delayMillis(3);
+		_system->delayMillis(3000);
 	else
-		_system->delayMillis(4);
+		_system->delayMillis(4000);
 
 	key = getscan();
 	if (key != 0)
@@ -1070,9 +1070,9 @@
 		goto asco;
 
 	if (_lang == kSpanish)
-		_system->delayMillis(3);
+		_system->delayMillis(3000);
 	else
-		_system->delayMillis(4);
+		_system->delayMillis(4000);
 
 	key = getscan();
 	if (key != 0)
@@ -1097,9 +1097,9 @@
 		goto asco;
 
 	if (_lang == kSpanish)
-		_system->delayMillis(2);
+		_system->delayMillis(2000);
 	else
-		_system->delayMillis(4);
+		_system->delayMillis(4000);
 
 	key = getscan();
 	if (key != 0)


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