summaryrefslogtreecommitdiffstats
path: root/apps/plugins/rockblox1d.c
diff options
context:
space:
mode:
authorBertrik Sikken <bertrik@sikken.nl>2009-10-18 15:50:30 +0000
committerBertrik Sikken <bertrik@sikken.nl>2009-10-18 15:50:30 +0000
commitd24d885aa42b5087d89f12dabad13895051da4e2 (patch)
tree61584fe54660aab9a57bcb67c5a65cb888f4a38b /apps/plugins/rockblox1d.c
parent1c64a4d3e0a4ae2f4eb537f00c7dc4372ca5df88 (diff)
downloadrockbox-d24d885aa42b5087d89f12dabad13895051da4e2.tar.gz
rockbox-d24d885aa42b5087d89f12dabad13895051da4e2.zip
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/rockblox1d.c')
-rw-r--r--apps/plugins/rockblox1d.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/rockblox1d.c b/apps/plugins/rockblox1d.c
index 12f05bb639..441615845d 100644
--- a/apps/plugins/rockblox1d.c
+++ b/apps/plugins/rockblox1d.c
@@ -302,7 +302,7 @@ enum plugin_status plugin_start(const void* parameter)
++pos_cur_brick;
}
- if (end > *rb->current_tick)
+ if (TIME_BEFORE(*rb->current_tick, end))
rb->sleep(end-*rb->current_tick);
else
rb->yield();