mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 15:22:15 +00:00
fixed: if we allow long names for the fade table we must also check for them when the colormap gets loaded.
This commit is contained in:
parent
65e8563cf4
commit
fedf9c6a5b
1 changed files with 1 additions and 1 deletions
|
@ -396,7 +396,7 @@ void R_SetDefaultColormap (const char *name)
|
|||
BYTE unremap[256];
|
||||
BYTE remap[256];
|
||||
|
||||
lump = Wads.CheckNumForName (name, ns_colormaps);
|
||||
lump = Wads.CheckNumForFullName (name, true, ns_colormaps);
|
||||
if (lump == -1)
|
||||
lump = Wads.CheckNumForName (name, ns_global);
|
||||
|
||||
|
|
Loading…
Reference in a new issue