diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2003-11-11 11:03:59 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2003-11-11 11:03:59 +0000 |
| commit | 1484ece76ee1b770242c0e6c95e4ea1b1b522205 (patch) | |
| tree | 708980bb5034eade27dfac1670cfde7b5d3abf7a /apps/plugins | |
| parent | 9e9da94b714dc3108bd06366e5f15f53602a0f08 (diff) | |
| download | rockbox-1484ece76ee1b770242c0e6c95e4ea1b1b522205.zip rockbox-1484ece76ee1b770242c0e6c95e4ea1b1b522205.tar.gz rockbox-1484ece76ee1b770242c0e6c95e4ea1b1b522205.tar.bz2 rockbox-1484ece76ee1b770242c0e6c95e4ea1b1b522205.tar.xz | |
Ok, I admit it, it was silly
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4029 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/vu_meter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/vu_meter.c b/apps/plugins/vu_meter.c index 712c7d1..268f4b1 100644 --- a/apps/plugins/vu_meter.c +++ b/apps/plugins/vu_meter.c @@ -105,7 +105,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) /* We must yield once in a while to make sure that the MPEG thread isn't starved, but we use the shortest possible timeout for best performance */ - switch (rb->button_get_w_tmo(HZ/HZ)) + switch (rb->button_get_w_tmo(1)) { case BUTTON_OFF: return PLUGIN_OK; |