mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-21 12:01:05 +00:00
Merge branch 'fix-long-lr-frames' into 'next'
Fix L/R frames not being automatically mirrored See merge request STJr/SRB2!2519
This commit is contained in:
commit
3b5cfdeb3e
1 changed files with 2 additions and 2 deletions
|
@ -367,7 +367,7 @@ static void MirrorMissingRotations(void)
|
|||
{
|
||||
spriteframe_t *frame = &sprtemp[framenum];
|
||||
|
||||
if (frame->rotate == SRF_NONE || !(frame->rotate & SRF_3DMASK))
|
||||
if (frame->rotate == SRF_NONE || !(frame->rotate & (SRF_3DMASK | SRF_2D)))
|
||||
continue;
|
||||
|
||||
UINT8 numrotations = frame->rotate == SRF_3D ? 8 : 16;
|
||||
|
|
Loading…
Reference in a new issue