diff --git a/source/fileio/filetab.cpp b/source/fileio/filetab.cpp index 2c5fee3d8..2056aa931 100644 --- a/source/fileio/filetab.cpp +++ b/source/fileio/filetab.cpp @@ -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", diff --git a/source/fileio/filetab.h b/source/fileio/filetab.h index de91ce2ee..7e3f8fcbc 100644 --- a/source/fileio/filetab.h +++ b/source/fileio/filetab.h @@ -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, diff --git a/source/fmv/fmv.cpp b/source/fmv/fmv.cpp index adb79db66..bc7e3a770 100644 --- a/source/fmv/fmv.cpp +++ b/source/fmv/fmv.cpp @@ -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 }; diff --git a/source/fmv/fmv.h b/source/fmv/fmv.h index f11f460a5..ed4ba3b31 100644 --- a/source/fmv/fmv.h +++ b/source/fmv/fmv.h @@ -41,6 +41,9 @@ enum FMV_THQ, FMV_CLIMAX, FMV_INTRO, +#if defined(__TERRITORY_EUR__) + FMV_DEMO, +#endif MAX_FMVS, };