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:
helixhorned 2015-06-06 15:04:13 +00:00
parent 7c139646ca
commit f52923fb4d
1 changed files with 3 additions and 2 deletions

View File

@ -1920,8 +1920,9 @@ badindex:
case CON_ROTATEPOINT:
insptr++;
{
vec2_t pivot = { Gv_GetVarX(*insptr++), Gv_GetVarX(*insptr++) };
vec2_t p = { Gv_GetVarX(*insptr++), Gv_GetVarX(*insptr++) } ;
vec2_t pivot = { Gv_GetVarX(*insptr), Gv_GetVarX(*(insptr+1)) };
vec2_t p = { Gv_GetVarX(*(insptr+2)), Gv_GetVarX(*(insptr+3)) };
insptr += 4;
int32_t daang=Gv_GetVarX(*insptr++);
int32_t x2var=*insptr++, y2var=*insptr++;
vec2_t p2;