[Scummvm-cvs-logs] SF.net SVN: scummvm: [24317] scummvm/trunk/engines/agos

kirben at users.sourceforge.net kirben at users.sourceforge.net
Sat Oct 14 16:51:20 CEST 2006


Revision: 24317
          http://svn.sourceforge.net/scummvm/?rev=24317&view=rev
Author:   kirben
Date:     2006-10-14 07:51:15 -0700 (Sat, 14 Oct 2006)

Log Message:
-----------
Add game details for menu file used by early games

Modified Paths:
--------------
    scummvm/trunk/engines/agos/game.cpp
    scummvm/trunk/engines/agos/intern.h

Modified: scummvm/trunk/engines/agos/game.cpp
===================================================================
--- scummvm/trunk/engines/agos/game.cpp	2006-10-14 14:38:25 UTC (rev 24316)
+++ scummvm/trunk/engines/agos/game.cpp	2006-10-14 14:51:15 UTC (rev 24317)
@@ -172,6 +172,7 @@
 };
 
 static const ADGameFileDescription ELVIRA1AMIGADEMO_GameFiles[] = {
+	{ "agos.mdf",		GAME_MENUFILE,	"825bc8eecd599f4c26732902ba2c2c77"},
 	{ "englishdemo",	GAME_BASEFILE,	"7bbc2dfe8619ef579004ff57674c6e92"},
 	{ "icon.dat",		GAME_ICONFILE,	"68b329da9893e34099c7d8ad5cb9c940"},
 };
@@ -218,6 +219,7 @@
 static const ADGameFileDescription WAXWORKSAMIGA_GameFiles[] = {
 	{ "gameamiga",		GAME_BASEFILE,	"e6207a69cf7356f13acbe8d14bdd844e"},  // Unpacked version
 	{ "icon.pkd",		GAME_ICONFILE,	"4822a91c18b1b2005ac17fc617f7dcbe"},
+	{ "menus.dat",		GAME_MENUFILE,	"3409eeb8ca8b46fc04da99de67573f5e"},
 	{ "stripped.txt",	GAME_STRFILE,	"6faaebff2786216900061eeb978f10af"},
 	{ "tbllist",		GAME_TBLFILE,	"95c44bfc380770a6b6dd0dfcc69e80a0"},
 	{ "xtbllist",		GAME_XTBLFILE,	"6c7b3db345d46349a5226f695c03e20f"},
@@ -226,6 +228,7 @@
 static const ADGameFileDescription WAXWORKSDOS_GameFiles[] = {
 	{ "gamepc",		GAME_BASEFILE,	"7751e9358e894e32ef40ef3b3bae0f2a"},
 	{ "icon.dat",		GAME_ICONFILE,	"ef1b8ad3494cf103dc10a99fe152ef9a"},
+	{ "menus.dat",		GAME_MENUFILE,	"3409eeb8ca8b46fc04da99de67573f5e"},
 	{ "roomslst",		GAME_RMSLFILE,	"e3758c46ab8f3c23a1ac012bd607108d"},
 	{ "stripped.txt",	GAME_STRFILE,	"f259e3e07a1cde8d0404a767d815e12c"},
 	{ "tbllist",		GAME_TBLFILE,	"95c44bfc380770a6b6dd0dfcc69e80a0"},

Modified: scummvm/trunk/engines/agos/intern.h
===================================================================
--- scummvm/trunk/engines/agos/intern.h	2006-10-14 14:38:25 UTC (rev 24316)
+++ scummvm/trunk/engines/agos/intern.h	2006-10-14 14:51:15 UTC (rev 24317)
@@ -216,12 +216,13 @@
 	GAME_BASEFILE = 1 << 0,
 	GAME_ICONFILE = 1 << 1,
 	GAME_GMEFILE  = 1 << 2,
-	GAME_STRFILE  = 1 << 3,
-	GAME_RMSLFILE = 1 << 4,
-	GAME_TBLFILE  = 1 << 5,
-	GAME_XTBLFILE  = 1 << 6,
+	GAME_MENUFILE = 1 << 3,
+	GAME_STRFILE  = 1 << 4,
+	GAME_RMSLFILE = 1 << 5,
+	GAME_TBLFILE  = 1 << 6,
+	GAME_XTBLFILE  = 1 << 7,
 
-	GAME_GFXIDXFILE = 1 << 7
+	GAME_GFXIDXFILE = 1 << 8
 };
 
 enum GameIds {


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