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:
Simon Howard 2008-12-27 17:30:03 +00:00
parent 6921e51792
commit 64244d674a

View file

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