mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
m32exec.c fix "multiple unsequenced modifications to 'insptr' [-Wunsequenced]".
git-svn-id: https://svn.eduke32.com/eduke32@5262 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
7c139646ca
commit
f52923fb4d
1 changed files with 3 additions and 2 deletions
|
@ -1920,8 +1920,9 @@ badindex:
|
||||||
case CON_ROTATEPOINT:
|
case CON_ROTATEPOINT:
|
||||||
insptr++;
|
insptr++;
|
||||||
{
|
{
|
||||||
vec2_t pivot = { Gv_GetVarX(*insptr++), Gv_GetVarX(*insptr++) };
|
vec2_t pivot = { Gv_GetVarX(*insptr), Gv_GetVarX(*(insptr+1)) };
|
||||||
vec2_t p = { Gv_GetVarX(*insptr++), Gv_GetVarX(*insptr++) } ;
|
vec2_t p = { Gv_GetVarX(*(insptr+2)), Gv_GetVarX(*(insptr+3)) };
|
||||||
|
insptr += 4;
|
||||||
int32_t daang=Gv_GetVarX(*insptr++);
|
int32_t daang=Gv_GetVarX(*insptr++);
|
||||||
int32_t x2var=*insptr++, y2var=*insptr++;
|
int32_t x2var=*insptr++, y2var=*insptr++;
|
||||||
vec2_t p2;
|
vec2_t p2;
|
||||||
|
|
Loading…
Reference in a new issue