mirror of
https://github.com/freedoom/freedoom.git
synced 2025-09-01 13:25:46 -04:00
wadinfo-builder: Convert assignment overrides to lower case.
Fixes a bug with the Revenant rockets appearing as the "graphic not done yet" stand-in, when the sprite was actually present.
This commit is contained in:
parent
6921e51792
commit
64244d674a
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ def parse_assignment(section, line, match):
|
|||
# allow "= filename.ext" to override the filename used
|
||||
|
||||
if override is not None:
|
||||
filename = find_file(section, override)
|
||||
filename = find_file(section, override.lower())
|
||||
else:
|
||||
filename = find_file(section, resource)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue