summaryrefslogtreecommitdiff
path: root/src/heretic/deh_htic.c
diff options
context:
space:
mode:
authorSimon Howard2010-02-08 21:14:30 +0000
committerSimon Howard2010-02-08 21:14:30 +0000
commit56412813c70ba44a6f6a74cee5bf460ca6a31402 (patch)
tree0770e771e2a03defd6668531fe8125afa4a526b8 /src/heretic/deh_htic.c
parent08e0b1471b357ae22a632d1752919d973db8983e (diff)
downloadchocolate-doom-56412813c70ba44a6f6a74cee5bf460ca6a31402.tar.gz
chocolate-doom-56412813c70ba44a6f6a74cee5bf460ca6a31402.tar.bz2
chocolate-doom-56412813c70ba44a6f6a74cee5bf460ca6a31402.zip
Add Heretic implementation of HHE "Text" section, add DEH_String()
around appropriate strings to allow string replacements. Subversion-branch: /branches/raven-branch Subversion-revision: 1867
Diffstat (limited to 'src/heretic/deh_htic.c')
-rw-r--r--src/heretic/deh_htic.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/heretic/deh_htic.c b/src/heretic/deh_htic.c
index ca1c6d5c..59c426ef 100644
--- a/src/heretic/deh_htic.c
+++ b/src/heretic/deh_htic.c
@@ -44,8 +44,8 @@ extern deh_section_t deh_section_frame;
extern deh_section_t deh_section_pointer;
// deh_sound.c
extern deh_section_t deh_section_sound;
-// deh_text.c:
-extern deh_section_t deh_section_text;
+// deh_htext.c:
+extern deh_section_t deh_section_heretic_text;
// deh_thing.c:
extern deh_section_t deh_section_thing;
// deh_weapon.c:
@@ -61,7 +61,7 @@ deh_section_t *deh_section_types[] =
&deh_section_frame,
// &deh_section_pointer, TODO
&deh_section_sound,
-// &deh_section_text, TODO
+ &deh_section_heretic_text,
&deh_section_thing,
&deh_section_weapon,
NULL