summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBertrik Sikken <bertrik@sikken.nl>2008-05-26 06:55:51 +0000
committerBertrik Sikken <bertrik@sikken.nl>2008-05-26 06:55:51 +0000
commit6bfb1ab221b483880173c7af8e55591a73d781de (patch)
tree895ee3ae539abc0a854d1ab2bfabea72db01c6a1
parent705e703f45e3c13c715892b0160f1f5aa8c6d4c8 (diff)
downloadrockbox-6bfb1ab221b483880173c7af8e55591a73d781de.tar.gz
rockbox-6bfb1ab221b483880173c7af8e55591a73d781de.zip
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
-rw-r--r--apps/plugins/xobox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/xobox.c b/apps/plugins/xobox.c
index 5054fd21b1..5fb7072b6a 100644
--- a/apps/plugins/xobox.c
+++ b/apps/plugins/xobox.c
@@ -913,7 +913,7 @@ static int xobox_loop (void)
913 } 913 }
914#endif 914#endif
915 915
916 button = rb->button_get_w_tmo (true); 916 button = rb->button_get_w_tmo (1);
917 switch (button) { 917 switch (button) {
918 case UP: 918 case UP:
919 case UP|BUTTON_REPEAT: 919 case UP|BUTTON_REPEAT: