textgen: Fix config file path.

My earlier commit added the wrong config file paths for the dehacked
lumps, which broke the build.
This commit is contained in:
Simon Howard 2014-01-11 23:22:05 +00:00
parent 5469cd9c11
commit bc5ade0f33

View file

@ -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):