diff options
| author | Michael Giacomelli <giac2000@hotmail.com> | 2011-04-24 23:44:58 +0000 |
|---|---|---|
| committer | Michael Giacomelli <giac2000@hotmail.com> | 2011-04-24 23:44:58 +0000 |
| commit | 8166ce75c8c13fe96d3fe8b934c819b0a155a6c8 (patch) | |
| tree | a60f8d441f0c656d82ca097842e60253606e36c6 /apps | |
| parent | 33a17dc6c4290646de8025a0e0fa5a70ebb1d138 (diff) | |
| download | rockbox-8166ce75c8c13fe96d3fe8b934c819b0a155a6c8.zip rockbox-8166ce75c8c13fe96d3fe8b934c819b0a155a6c8.tar.gz rockbox-8166ce75c8c13fe96d3fe8b934c819b0a155a6c8.tar.bz2 rockbox-8166ce75c8c13fe96d3fe8b934c819b0a155a6c8.tar.xz | |
Commit FS#12056 by Noe Lojkinse. Fixes a bug in Xobox where old key presses were left on the buffer too long.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29781 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/plugins/xobox.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/plugins/xobox.c b/apps/plugins/xobox.c index 920bc23..157f3c5 100644 --- a/apps/plugins/xobox.c +++ b/apps/plugins/xobox.c @@ -956,6 +956,7 @@ static inline void move_board (void) player.level++; init_board (); refresh_board (); + rb->button_clear_queue(); rb->splash (HZ * 2, "Ready?"); } } |