Oops forget to commit updated create_kyradat from patch #1885629 "KYRA: HoF missing talkie credits and demo support".

svn-id: r30847
This commit is contained in:
Johannes Schickel 2008-02-10 18:35:49 +00:00
parent c92b2baed7
commit acf50bac9d
4 changed files with 5 additions and 1 deletions

View File

@ -31,7 +31,7 @@
#include "md5.h"
enum {
kKyraDatVersion = 19,
kKyraDatVersion = 20,
kIndexSize = 12
};
@ -208,6 +208,7 @@ const ExtractFilename extractFilenames[] = {
{ k2SeqplayFinaleTracks, kTypeStringList, "S_FINALE.TRA" },
{ k2SeqplayIntroCDA, kTypeRawData, "S_INTRO.CDA" },
{ k2SeqplayFinaleCDA, kTypeRawData, "S_FINALE.CDA" },
{ k2SeqplayShapeDefs, kTypeRawData, "S_DEMO.SHP" },
// Ingame
{ k2IngamePakFiles, kTypeStringList, "I_PAKFILES.TXT" },

View File

@ -152,6 +152,7 @@ enum kExtractID {
k2SeqplayFinaleTracks,
k2SeqplayIntroCDA,
k2SeqplayFinaleCDA,
k2SeqplayShapeDefs,
k2IngamePakFiles,
k2IngameSfxFiles,

View File

@ -3,6 +3,7 @@ const ExtractEntry kyra2Demo[] = {
{ k2SeqplaySfxFiles, 0x0001CDDE, 0x0001CEBC },
{ k2SeqplaySeqData, 0x0001C920, 0x0001CB9C },
{ k2SeqplayIntroTracks, 0x0001CEBC, 0x0001CECC },
{ k2SeqplayShapeDefs, 0x0001CC14, 0x0001CCCC },
{ -1, 0, 0 }
};

View File

@ -443,6 +443,7 @@ const int kyra2DemoNeed[] = {
k2SeqplaySeqData,
k2SeqplaySfxFiles,
k2SeqplayIntroTracks,
k2SeqplayShapeDefs,
-1
};