[Scummvm-cvs-logs] SF.net SVN: scummvm: [25132] scummvm/trunk/backends/platform/PalmOS/Src/ launcher
chrilith at users.sourceforge.net
chrilith at users.sourceforge.net
Sat Jan 20 19:24:56 CET 2007
Revision: 25132
http://scummvm.svn.sourceforge.net/scummvm/?rev=25132&view=rev
Author: chrilith
Date: 2007-01-20 10:24:55 -0800 (Sat, 20 Jan 2007)
Log Message:
-----------
Prepare Parallaction support (not working for now)
Modified Paths:
--------------
scummvm/trunk/backends/platform/PalmOS/Src/launcher/games.cpp
scummvm/trunk/backends/platform/PalmOS/Src/launcher/games.h
Modified: scummvm/trunk/backends/platform/PalmOS/Src/launcher/games.cpp
===================================================================
--- scummvm/trunk/backends/platform/PalmOS/Src/launcher/games.cpp 2007-01-20 18:20:36 UTC (rev 25131)
+++ scummvm/trunk/backends/platform/PalmOS/Src/launcher/games.cpp 2007-01-20 18:24:55 UTC (rev 25132)
@@ -69,7 +69,8 @@
MemSet(&gitCur, sizeof(GameInfoType), 0);
- if (version == itemVersion_356 ||
+ if (version == itemVersion_357 ||
+ version == itemVersion_356 ||
version == itemVersion_355 ||
version == itemVersion_354 ||
version == itemVersion_353 ||
@@ -204,6 +205,10 @@
gitCur.platform++;
}
+ if (version <= itemVersion_357)
+ if (gitCur.engine >= ENGINE_PARALLACTION) // newly added engine
+ gitCur.engine++;
+
if (gitCur.musicInfo.volume.palm > 100)
gitCur.musicInfo.volume.palm = 50;
Modified: scummvm/trunk/backends/platform/PalmOS/Src/launcher/games.h
===================================================================
--- scummvm/trunk/backends/platform/PalmOS/Src/launcher/games.h 2007-01-20 18:20:36 UTC (rev 25131)
+++ scummvm/trunk/backends/platform/PalmOS/Src/launcher/games.h 2007-01-20 18:24:55 UTC (rev 25132)
@@ -25,9 +25,10 @@
#ifndef __GAMES_H__
#define __GAMES_H__
-#define curItemVersion sysMakeROMVersion(3,5,7,0,0) // Added : Apple IIgs
+#define curItemVersion sysMakeROMVersion(3,5,8,0,0) // Parallaction engine
+#define itemVersion_357 sysMakeROMVersion(3,5,7,0,0) // Added : Apple IIgs
#define itemVersion_356 sysMakeROMVersion(3,5,6,0,0) // Changed : Simon -> AGOS
#define itemVersion_355 sysMakeROMVersion(3,5,5,0,0) // Added : AGI engine
#define itemVersion_354 sysMakeROMVersion(3,5,4,0,0) // Added : Default/Auto music driver
@@ -164,6 +165,7 @@
ENGINE_LURE,
ENGINE_GOB,
ENGINE_KYRA,
+ ENGINE_PARALLACTION,
ENGINE_SAGA,
ENGINE_SCUMM,
ENGINE_AGI,
@@ -175,19 +177,20 @@
const char *fileP;
const char *nameP;
} engines[] = {
- { "agos", "AGOS Engine" },
- { "sky", "Beneath a Steel Sky" },
- { "sword1", "Broken Sword 1" },
- { "sword2", "Broken Sword 2" },
- { "cine", "Delphine Cinematique v1.0" },
- { "queen", "Flight of the Amazon Queen" },
- { "lure", "Lure of the Tempress" },
- { "gob", "Gobliiins" },
- { "kyra", "Kyrandia" },
- { "saga", "SAGA Engine" },
- { "scumm", "Scumm Games" },
- { "agi", "Sierra AGI" },
- { "touche", "Touche: The Adventures of the Fifth Musketeer" },
+ { "agos", "AGOS Engine" },
+ { "sky", "Beneath a Steel Sky" },
+ { "sword1", "Broken Sword 1" },
+ { "sword2", "Broken Sword 2" },
+ { "cine", "Delphine Cinematique v1.0" },
+ { "queen", "Flight of the Amazon Queen" },
+ { "lure", "Lure of the Tempress" },
+ { "gob", "Gobliiins" },
+ { "kyra", "Kyrandia" },
+ { "parallaction", "Parallaction" },
+ { "saga", "SAGA Engine" },
+ { "scumm", "Scumm Games" },
+ { "agi", "Sierra AGI" },
+ { "touche", "Touche: The Adventures of the Fifth Musketeer" },
};
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