diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2005-01-26 22:48:25 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2005-01-26 22:48:25 +0000 |
| commit | 3c348df5cafaf5d893c610fd2caf8234abe5cf88 (patch) | |
| tree | 631a926bffd197b48c9e4edb8b568319808e74b7 /apps/plugins/nim.c | |
| parent | 99d2a4b43642aef2ff859ed8195b62d3b2110a26 (diff) | |
| download | rockbox-3c348df5cafaf5d893c610fd2caf8234abe5cf88.zip rockbox-3c348df5cafaf5d893c610fd2caf8234abe5cf88.tar.gz rockbox-3c348df5cafaf5d893c610fd2caf8234abe5cf88.tar.bz2 rockbox-3c348df5cafaf5d893c610fd2caf8234abe5cf88.tar.xz | |
Changed several places to use button_clear_queue() to empty the button queue. Added the ability to empty the (system's) button queue to the X11 simulatr.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5665 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/nim.c')
| -rw-r--r-- | apps/plugins/nim.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/nim.c b/apps/plugins/nim.c index 48e0937..27f1210 100644 --- a/apps/plugins/nim.c +++ b/apps/plugins/nim.c @@ -174,7 +174,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) min=0; /*Empty the event queue*/ - while (rb->button_get(false)!=BUTTON_NONE); + rb->button_clear_queue(); /* Game loop */ while(end!=true) |