Advertisement
Guest User

Untitled

a guest
May 24th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.25 KB | None | 0 0
  1. new
  2.     start_tick,
  3.     start_tick_diff;
  4.  
  5.  
  6. // somewhere
  7. start_tick = GetTickCount();
  8. start_tick_diff = cellmax - start_tick;
  9.  
  10. // elsewhere
  11. new
  12.     diff = GetTickCount() - start_tick;
  13.  
  14. if (diff < 0)
  15. {
  16.     diff += start_tick_diff;
  17. }
  18.  
  19. // do the rest
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement