diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2008-05-26 06:55:51 +0000 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2008-05-26 06:55:51 +0000 |
| commit | 6bfb1ab221b483880173c7af8e55591a73d781de (patch) | |
| tree | 895ee3ae539abc0a854d1ab2bfabea72db01c6a1 /apps/plugins | |
| parent | 705e703f45e3c13c715892b0160f1f5aa8c6d4c8 (diff) | |
| download | rockbox-6bfb1ab221b483880173c7af8e55591a73d781de.zip rockbox-6bfb1ab221b483880173c7af8e55591a73d781de.tar.gz rockbox-6bfb1ab221b483880173c7af8e55591a73d781de.tar.bz2 rockbox-6bfb1ab221b483880173c7af8e55591a73d781de.tar.xz | |
Fix argument for call to rb->button_get_w_tmo function (should be and int instead of a bool).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17633 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/xobox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/xobox.c b/apps/plugins/xobox.c index 5054fd2..5fb7072 100644 --- a/apps/plugins/xobox.c +++ b/apps/plugins/xobox.c @@ -913,7 +913,7 @@ static int xobox_loop (void) } #endif - button = rb->button_get_w_tmo (true); + button = rb->button_get_w_tmo (1); switch (button) { case UP: case UP|BUTTON_REPEAT: |