This commit is contained in:
Daveo 2001-08-29 15:07:21 +00:00
parent 983e73a852
commit 1a25c4dbe7
4 changed files with 12 additions and 0 deletions

View File

@ -10,6 +10,9 @@ char *FilenameList[FILEPOS_MAX]=
"THQ.STR",
"CLIMAX.STR",
"INTRO.STR",
#if defined(__TERRITORY_EUR__)
"DEMO.STR",
#endif
//"CLIMAX.STR",
//"LEVEL1.STR",
//"LEVEL2.STR",

View File

@ -13,6 +13,9 @@ enum FILEPOS_ENUM
FILEPOS_THQ_STR,
FILEPOS_CLIMAX_STR,
FILEPOS_INTRO_STR,
#if defined(__TERRITORY_EUR__)
FILEPOS_DEMO_STR,
#endif
// FILEPOS_LEVEL1_STR,
// FILEPOS_LEVEL2_STR,
// FILEPOS_LEVEL3_STR,

View File

@ -149,6 +149,9 @@ static const FmvData s_fmvData[MAX_FMVS]=
{FILEPOS_THQ_STR, 270-15 },
{FILEPOS_CLIMAX_STR, 243-15 },
{FILEPOS_INTRO_STR, 607-15 },
#if defined(__TERRITORY_EUR__)
{FILEPOS_DEMO_STR, 582-15 },
#endif
};

View File

@ -41,6 +41,9 @@ enum
FMV_THQ,
FMV_CLIMAX,
FMV_INTRO,
#if defined(__TERRITORY_EUR__)
FMV_DEMO,
#endif
MAX_FMVS,
};