mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 23:01:59 +00:00
- Fixed: FMultiPatchTexture::ParsePatch didn't pass the usetype onto FTexture::CreateTexture.
SVN r3658 (trunk)
This commit is contained in:
parent
71e02e2d9e
commit
f4ff63e7c3
1 changed files with 1 additions and 1 deletions
|
@ -1008,7 +1008,7 @@ void FMultiPatchTexture::ParsePatch(FScanner &sc, TexPart & part, bool silent, i
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
part.Texture = FTexture::CreateTexture("", lumpnum, TEX_WallPatch);
|
part.Texture = FTexture::CreateTexture("", lumpnum, usetype);
|
||||||
TexMan.AddTexture(part.Texture);
|
TexMan.AddTexture(part.Texture);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue