diff options
author | Andrew Kurushin | 2005-07-20 19:34:47 +0000 |
---|---|---|
committer | Andrew Kurushin | 2005-07-20 19:34:47 +0000 |
commit | 2084718180cbfb1821419e1c1c8d47e1ae77226f (patch) | |
tree | 2b5c874ba7e9765ae55a6d9027a252f7ddb891f9 /saga | |
parent | 7180c24b4efc2c1840d95aa30d6909bec5cb2f95 (diff) | |
download | scummvm-rg350-2084718180cbfb1821419e1c1c8d47e1ae77226f.tar.gz scummvm-rg350-2084718180cbfb1821419e1c1c8d47e1ae77226f.tar.bz2 scummvm-rg350-2084718180cbfb1821419e1c1c8d47e1ae77226f.zip |
ite mac demo patch files correction
svn-id: r18570
Diffstat (limited to 'saga')
-rw-r--r-- | saga/game.cpp | 25 |
1 files changed, 17 insertions, 8 deletions
diff --git a/saga/game.cpp b/saga/game.cpp index 177c6a207e..304df7c276 100644 --- a/saga/game.cpp +++ b/saga/game.cpp @@ -216,6 +216,15 @@ static GameFontDescription ITEWINDEMO_GameFonts[] = { {0} }; +// Inherit the Earth - Wyrmkeep Mac Demo version +static GameFileDescription ITEMACDEMO_GameFiles[] = { + {"ited.rsc", GAME_RESOURCEFILE}, + {"scriptsd.rsc", GAME_SCRIPTFILE}, + {"soundsd.rsc", GAME_SOUNDFILE}, + {"voicesd.rsc", GAME_VOICEFILE}, + {"musicd.rsc", GAME_MUSICFILE} +}; + // Inherit the Earth - Wyrmkeep Linux Demo version static GameFileDescription ITELINDEMO_GameFiles[] = { {"ited.rsc", GAME_RESOURCEFILE}, @@ -685,8 +694,8 @@ static GameDescription gameDescriptions[] = { &ITE_DisplayInfo, ITE_DEFAULT_SCENE, &ITE_Resources, - ARRAYSIZE(ITEWINDEMO_GameFiles), - ITEWINDEMO_GameFiles, + ARRAYSIZE(ITEMACDEMO_GameFiles), + ITEMACDEMO_GameFiles, ARRAYSIZE(ITEWINDEMO_GameFonts), ITEWINDEMO_GameFonts, &ITECD_GameSound, @@ -704,8 +713,8 @@ static GameDescription gameDescriptions[] = { &ITE_DisplayInfo, ITE_DEFAULT_SCENE, &ITE_Resources, - ARRAYSIZE(ITEWINDEMO_GameFiles), - ITEWINDEMO_GameFiles, + ARRAYSIZE(ITEMACDEMO_GameFiles), + ITEMACDEMO_GameFiles, ARRAYSIZE(ITEWINDEMO_GameFonts), ITEWINDEMO_GameFonts, &ITECD_GameSound, @@ -728,8 +737,8 @@ static GameDescription gameDescriptions[] = { ARRAYSIZE(ITEWINDEMO_GameFonts), ITEWINDEMO_GameFonts, &ITECD_GameSound, - ARRAYSIZE(ITELinPatch_Files), - ITELinPatch_Files, + ARRAYSIZE(ITEMacPatch_Files), + ITEMacPatch_Files, GF_BIG_ENDIAN_DATA | GF_MAC_RESOURCES | GF_WYRMKEEP | GF_CD_FX }, @@ -825,8 +834,8 @@ static GameDescription gameDescriptions[] = { ARRAYSIZE(ITECD_GameFonts), ITECD_GameFonts, &ITECD_GameSound, - ARRAYSIZE(ITEMacPatch_Files), - ITEMacPatch_Files, + ARRAYSIZE(ITELinPatch_Files), + ITELinPatch_Files, GF_WYRMKEEP | GF_CD_FX }, |