X Tutup
Skip to content

Commit c10d050

Browse files
committed
MORTEVIELLE: Update misc files to include mort.dat
1 parent 7c23eb7 commit c10d050

File tree

5 files changed

+21
-0
lines changed

5 files changed

+21
-0
lines changed

Makefile.common

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,9 @@ endif
253253
ifdef ENABLE_LURE
254254
DIST_FILES_ENGINEDATA+=lure.dat
255255
endif
256+
ifdef ENABLE_MORTEVIELLE
257+
DIST_FILES_ENGINEDATA+=mort.dat
258+
endif
256259
ifdef ENABLE_NEVERHOOD
257260
DIST_FILES_ENGINEDATA+=neverhood.dat
258261
endif

devtools/README

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,13 @@ create_lure (dreammaster)
6363
the lure.dat file.
6464

6565

66+
create_mort (Strangerke)
67+
-----------
68+
Gathers several information found in the original DOS executable:
69+
- Font data
70+
- French, German and fan-made English translation
71+
72+
6673
create_project (LordHoto, Littleboy)
6774
--------------
6875
Creates project files for Visual Studio 2005, 2008, 2010, 2012, Xcode and

dists/engine-data/README

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ scripts, from.
1616
lure.dat
1717
TODO
1818

19+
mort.dat:
20+
File created partially by extracting font data from the French executable. It
21+
also contains the French and German translation, as well as a custom-made
22+
English translation.
23+
1924
queen.tbl:
2025
'queen.tbl' contains a list of filenames, filesizes and offsets for the
2126
individual files saved in QUEEN.1. This data was originally included in the

dists/scummvm.rc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ kyra.dat FILE "dists/engine-data/kyra.dat"
3232
#if ENABLE_LURE == STATIC_PLUGIN
3333
lure.dat FILE "dists/engine-data/lure.dat"
3434
#endif
35+
#if ENABLE_MORTEVIELLE == STATIC_PLUGIN
36+
mort.dat FILE "dists/engine-data/mort.dat"
37+
#endif
3538
#if ENABLE_NEVERHOOD == STATIC_PLUGIN
3639
neverhood.dat FILE "dists/engine-data/neverhood.dat"
3740
#endif

dists/scummvm.rc.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ kyra.dat FILE "dists/engine-data/kyra.dat"
3232
#if ENABLE_LURE == STATIC_PLUGIN
3333
lure.dat FILE "dists/engine-data/lure.dat"
3434
#endif
35+
#if ENABLE_MORTEVIELLE == STATIC_PLUGIN
36+
mort.dat FILE "dists/engine-data/mort.dat"
37+
#endif
3538
#if ENABLE_NEVERHOOD == STATIC_PLUGIN
3639
neverhood.dat FILE "dists/engine-data/neverhood.dat"
3740
#endif

0 commit comments

Comments
 (0)
X Tutup