so not too tough I just want to understand if the following is the most efficient/fast way of checking this;
if (misses++)
run_code();
(Basically if misses increased, run some code, useful for logging missed angles etc.)
P.S will this code run every time misses increases? Thanks :)
EDIT
This does not check if it increased, anybody got any ideas?