diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2008-12-13 07:36:44 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2008-12-13 07:36:44 +0000 |
| commit | 6340a4c9ed80e1a04e688be7578161583d886892 (patch) | |
| tree | 2a833f8c20309a9638073e7f20f1e59970f04a8b /apps/plugins/matrix.c | |
| parent | 93572e2a9e651b7d0bffae491da3d2ece2f0c2d2 (diff) | |
| download | rockbox-6340a4c9ed80e1a04e688be7578161583d886892.zip rockbox-6340a4c9ed80e1a04e688be7578161583d886892.tar.gz rockbox-6340a4c9ed80e1a04e688be7578161583d886892.tar.bz2 rockbox-6340a4c9ed80e1a04e688be7578161583d886892.tar.xz | |
Some plugins need to yield under heavy user input especially with a scrollwheel.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19416 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/matrix.c')
| -rw-r--r-- | apps/plugins/matrix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/matrix.c b/apps/plugins/matrix.c index 99b731d..c7d797e 100644 --- a/apps/plugins/matrix.c +++ b/apps/plugins/matrix.c @@ -315,7 +315,7 @@ enum plugin_status plugin_start(const struct plugin_api* api, const void* parame rb->lcd_update(); rb->sleep(sleep); } - button = rb->button_get(false); + button = rb->button_get(frozen); switch(button) { case MATRIX_PAUSE: frozen = !frozen; |