[Scummvm-cvs-logs] SF.net SVN: scummvm:[36213] scummvm/branches/branch-0-13-0/engines/agos/ agos.cpp
Kirben at users.sourceforge.net
Kirben at users.sourceforge.net
Wed Feb 4 06:54:22 CET 2009
Revision: 36213
http://scummvm.svn.sourceforge.net/scummvm/?rev=36213&view=rev
Author: Kirben
Date: 2009-02-04 05:54:22 +0000 (Wed, 04 Feb 2009)
Log Message:
-----------
Fix startup of AtariST demo of Elvira 1.
Modified Paths:
--------------
scummvm/branches/branch-0-13-0/engines/agos/agos.cpp
Modified: scummvm/branches/branch-0-13-0/engines/agos/agos.cpp
===================================================================
--- scummvm/branches/branch-0-13-0/engines/agos/agos.cpp 2009-02-04 05:52:14 UTC (rev 36212)
+++ scummvm/branches/branch-0-13-0/engines/agos/agos.cpp 2009-02-04 05:54:22 UTC (rev 36213)
@@ -991,22 +991,10 @@
if (getGameType() == GType_ELVIRA1 && getPlatform() == Common::kPlatformAtariST &&
(getFeatures() & GF_DEMO)) {
- int i;
+ setWindowImage(3, 9900);
+ while (!shouldQuit())
+ delay(0);
- while (!shouldQuit()) {
- for (i = 0; i < 4; i++) {
- setWindowImage(3, 9902 + i);
- debug(0, "Displaying image %d", 9902 + i);
- delay(3000);
-
- }
-
- for (i = 4; i < 16; i++) {
- setWindowImage(4, 9902 + i);
- debug(0, "Displaying image %d", 9902 + i);
- delay(3000);
- }
- }
}
if (getGameType() == GType_ELVIRA1 && getFeatures() & GF_DEMO) {
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