mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 14:52:01 +00:00
- HWSprite::Process()
: Fix yoff
adjustment when spr->cstat & CSTAT_SPRITE_YCENTER
.
This commit is contained in:
parent
9f48b36627
commit
ffb956749d
1 changed files with 1 additions and 1 deletions
|
@ -378,7 +378,7 @@ void HWSprite::Process(HWDrawInfo* di, spritetype* spr, sectortype* sector, int
|
|||
float xoff = (tilexoff * spr->xrepeat) * (0.2f / 16.f);
|
||||
float yoff = (tileyoff * spr->yrepeat) * (0.25f / 16.f);
|
||||
|
||||
if (spr->cstat & CSTAT_SPRITE_YCENTER) yoff -= width / 2;
|
||||
if (spr->cstat & CSTAT_SPRITE_YCENTER) yoff -= height * 0.5f;
|
||||
|
||||
if (flags & CSTAT_SPRITE_XFLIP) xoff = -xoff;
|
||||
if (flags & CSTAT_SPRITE_YFLIP) yoff = -yoff;
|
||||
|
|
Loading…
Reference in a new issue