[Scummvm-cvs-logs] SF.net SVN: scummvm: [25185] scummvm/trunk/engines/kyra/plugin.cpp
lordhoto at users.sourceforge.net
lordhoto at users.sourceforge.net
Thu Jan 25 12:32:51 CET 2007
Revision: 25185
http://scummvm.svn.sourceforge.net/scummvm/?rev=25185&view=rev
Author: lordhoto
Date: 2007-01-25 03:32:50 -0800 (Thu, 25 Jan 2007)
Log Message:
-----------
Using 0 flags for null id instead of KYRA2_UNK_FLAGS.
Modified Paths:
--------------
scummvm/trunk/engines/kyra/plugin.cpp
Modified: scummvm/trunk/engines/kyra/plugin.cpp
===================================================================
--- scummvm/trunk/engines/kyra/plugin.cpp 2007-01-25 11:26:13 UTC (rev 25184)
+++ scummvm/trunk/engines/kyra/plugin.cpp 2007-01-25 11:32:50 UTC (rev 25185)
@@ -68,7 +68,7 @@
{ { "kyra2", 0, AD_ENTRY1("FATE.PAK", "28cbad1c5bf06b2d3825ae57d760d032"), UNK_LANG, kPlatformPC }, KYRA2_UNK_FLAGS }, // check this! (cd version?)
{ { "kyra3", 0, AD_ENTRY1("ONETIME.PAK", "3833ff312757b8e6147f464cca0a6587"), UNK_LANG, kPlatformPC }, KYRA3_CD_FLAGS },
- { { NULL, NULL, {NULL, 0, NULL, 0}, UNK_LANG, kPlatformUnknown }, KYRA2_UNK_FLAGS }
+ { { NULL, NULL, {NULL, 0, NULL, 0}, UNK_LANG, kPlatformUnknown }, FLAGS(0, 0, 0, 0, 0) }
};
const PlainGameDescriptor gameList[] = {
@@ -119,7 +119,7 @@
}
GameFlags flags = adGameDescs[id].flags;
-
+
Platform platform = parsePlatform(ConfMan.get("platform"));
if (platform != kPlatformUnknown) {
flags.platform = platform;
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