From bc5ade0f33b32086eae5045ffc604aab1856eb49 Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Sat, 11 Jan 2014 23:22:05 +0000 Subject: [PATCH] textgen: Fix config file path. My earlier commit added the wrong config file paths for the dehacked lumps, which broke the build. --- graphics/text/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/graphics/text/config.py b/graphics/text/config.py index 3b049d72..c7220493 100644 --- a/graphics/text/config.py +++ b/graphics/text/config.py @@ -232,8 +232,8 @@ def update_level_name(lumpname, bexdata, bexname): levelname = re.sub('^\w*\d:\s*', '', bexdata[bexname]) white_graphics[lumpname] = levelname -freedoom_bex = read_bex_lump('../../lumps/freedoom.bex') -freedm_bex = read_bex_lump('../../lumps/freedm.bex') +freedoom_bex = read_bex_lump('../../lumps/dehacked.lmp') +freedm_bex = read_bex_lump('../../lumps/fdm_deh.lmp') for e in range(4): for m in range(9):