summaryrefslogtreecommitdiff
path: root/src/doom/deh_doom.c
diff options
context:
space:
mode:
authorFabian Greffrath2014-09-08 10:48:56 +0200
committerFabian Greffrath2014-09-08 10:48:56 +0200
commit366f45c10a632443767cbda6f7b2f3d98a60d60b (patch)
treeb4c3429beb8eb0890ae1c6343ed0cfbd12547511 /src/doom/deh_doom.c
parent204814c7bb16a8ad45435a15328072681978ea57 (diff)
downloadchocolate-doom-366f45c10a632443767cbda6f7b2f3d98a60d60b.tar.gz
chocolate-doom-366f45c10a632443767cbda6f7b2f3d98a60d60b.tar.bz2
chocolate-doom-366f45c10a632443767cbda6f7b2f3d98a60d60b.zip
add parser for [STRINGS] sections in BEX files
Diffstat (limited to 'src/doom/deh_doom.c')
-rw-r--r--src/doom/deh_doom.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/doom/deh_doom.c b/src/doom/deh_doom.c
index a8a7d28f..fc5cafd1 100644
--- a/src/doom/deh_doom.c
+++ b/src/doom/deh_doom.c
@@ -44,6 +44,8 @@ extern deh_section_t deh_section_text;
extern deh_section_t deh_section_thing;
// deh_weapon.c:
extern deh_section_t deh_section_weapon;
+// deh_bexstr.c:
+extern deh_section_t deh_section_bexstr;
//
// List of section types:
@@ -60,6 +62,7 @@ deh_section_t *deh_section_types[] =
&deh_section_text,
&deh_section_thing,
&deh_section_weapon,
+ &deh_section_bexstr,
NULL
};