1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Michael Sevakis 2008-12-13 07:36:44 +00:00
parent 93572e2a9e
commit 6340a4c9ed
5 changed files with 15 additions and 1 deletions

View file

@ -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;