mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-27 04:00:42 +00:00
- fixed small oversight in makepalookup parser.
This commit is contained in:
parent
512411d0fa
commit
16f45ffe3d
1 changed files with 5 additions and 1 deletions
|
@ -1333,7 +1333,11 @@ void parseMakePalookup(FScanner& sc, FScriptPosition& pos)
|
|||
havepal |= HAVE_REMAPSELF;
|
||||
}
|
||||
else if (sc.Compare("nofloorpal")) sc.GetNumber(nofloorpal, true);
|
||||
else if (sc.Compare("pal")) sc.GetNumber(pal, true);
|
||||
else if (sc.Compare("pal"))
|
||||
{
|
||||
havepal |= HAVE_PAL;
|
||||
sc.GetNumber(pal, true);
|
||||
}
|
||||
}
|
||||
red = clamp(red, 0, 63);
|
||||
green = clamp(green, 0, 63);
|
||||
|
|
Loading…
Reference in a new issue