mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 23:01:59 +00:00
- fixed: The TEXTURES parser wanted a redundant comma after parsing a color.
This commit is contained in:
parent
9b1442915f
commit
9b134a78e3
1 changed files with 1 additions and 1 deletions
|
@ -1148,7 +1148,7 @@ void FMultiPatchTexture::ParsePatch(FScanner &sc, TexPart & part, bool silent, i
|
||||||
sc.MustGetStringName(",");
|
sc.MustGetStringName(",");
|
||||||
sc.MustGetNumber();
|
sc.MustGetNumber();
|
||||||
b = sc.Number;
|
b = sc.Number;
|
||||||
sc.MustGetStringName(",");
|
//sc.MustGetStringName(","); This was never supposed to be here.
|
||||||
part.Blend = MAKERGB(r, g, b);
|
part.Blend = MAKERGB(r, g, b);
|
||||||
}
|
}
|
||||||
// Blend.a may never be 0 here.
|
// Blend.a may never be 0 here.
|
||||||
|
|
Loading…
Reference in a new issue