Fix compiler suggestion.

This commit is contained in:
Andrew Alderwick 2022-01-05 14:37:37 +00:00
parent 291cb3d1a2
commit 0fd288de79
1 changed files with 2 additions and 2 deletions

View File

@ -101,7 +101,7 @@ uxn_eval(Uxn *u, Uint16 pc)
err: err:
/* set 1 in errcode if it involved the return stack instead of the working stack */ /* set 1 in errcode if it involved the return stack instead of the working stack */
/* (stack overflow & ( opcode was STH / JSR )) ^ Return Mode */ /* (stack overflow & ( opcode was STH / JSR )) ^ Return Mode */
errcode |= ((errcode >> 1 & (instr & 0x1e) == 0x0e) ^ instr >> 6) & 1; errcode |= ((errcode >> 1 & ((instr & 0x1e) == 0x0e)) ^ instr >> 6) & 1;
return uxn_halt(u, errcode, pc - 1); return uxn_halt(u, errcode, pc - 1);
} }