mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-24 21:31:46 +00:00
Fix error report when some frames are missing
This commit is contained in:
parent
0e57d70b95
commit
49fa45039e
1 changed files with 1 additions and 1 deletions
|
@ -327,7 +327,7 @@ static void MirrorMissingRotations(void)
|
|||
{
|
||||
spriteframe_t *frame = &sprtemp[framenum];
|
||||
|
||||
if (!(frame->rotate & SRF_3DMASK))
|
||||
if (frame->rotate == SRF_NONE || !(frame->rotate & SRF_3DMASK))
|
||||
continue;
|
||||
|
||||
UINT8 numrotations = frame->rotate == SRF_3D ? 8 : 16;
|
||||
|
|
Loading…
Reference in a new issue