Advertisement
Le_BuG63

Untitled

Feb 28th, 2015
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. int Timer_setTimeToWait(TIMER *timer, int ticks)
  2. {
  3. if ((timer->ticks.act - timer->ticks.start) < ticks)
  4. return 0;
  5.  
  6. timer->ticks.start = timer->ticks.act;
  7.  
  8. return 1;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement