11.02.2009, 12:53
maybe replace
with
and
with
edit:
hmm, not your problem, I'm not that good at maths, so I can't help you with that
Код:
if(keys == KEY_CROUCH )
Код:
if(keys & KEY_CROUCH )
Код:
if(keys == KEY_JUMP )
Код:
if(keys & KEY_JUMP )
hmm, not your problem, I'm not that good at maths, so I can't help you with that

