diff options
author | Bertrik Sikken <bertrik@sikken.nl> | 2009-10-18 15:50:30 +0000 |
---|---|---|
committer | Bertrik Sikken <bertrik@sikken.nl> | 2009-10-18 15:50:30 +0000 |
commit | d24d885aa42b5087d89f12dabad13895051da4e2 (patch) | |
tree | 61584fe54660aab9a57bcb67c5a65cb888f4a38b /apps/plugins/spacerocks.c | |
parent | 1c64a4d3e0a4ae2f4eb537f00c7dc4372ca5df88 (diff) |
Use wrap-safe TIME_BEFORE/TIME_AFTER macros to compare times with current_time, instead of comparing them directly.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23246 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/spacerocks.c')
-rw-r--r-- | apps/plugins/spacerocks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/spacerocks.c b/apps/plugins/spacerocks.c index ded3900b05..0061967f8b 100644 --- a/apps/plugins/spacerocks.c +++ b/apps/plugins/spacerocks.c @@ -2059,7 +2059,7 @@ static int spacerocks_game_loop(void) if(next_thrust_count) next_thrust_count--; - if (end > *rb->current_tick) + if (TIME_BEFORE(*rb->current_tick, end)) rb->sleep(end-*rb->current_tick); else rb->yield(); |