mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-18 07:22:28 +00:00
frameFrame is unsigned, let set it to 0xFF
This commit is contained in:
parent
f10f526562
commit
c0ec90901e
1 changed files with 1 additions and 1 deletions
|
@ -787,7 +787,7 @@ static void R_ParseSpriteInfoFrame(spriteinfo_t *info)
|
|||
char *sprinfoToken;
|
||||
size_t sprinfoTokenLength;
|
||||
char *frameChar = NULL;
|
||||
UINT8 frameFrame = -1;
|
||||
UINT8 frameFrame = 0xFF;
|
||||
#ifdef ROTSPRITE
|
||||
INT16 frameXPivot = 0;
|
||||
INT16 frameYPivot = 0;
|
||||
|
|
Loading…
Reference in a new issue