summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2006-03-03 08:51:04 +0000
committerJens Arnold <amiconn@rockbox.org>2006-03-03 08:51:04 +0000
commit8dccb294a851f8814f739cefa5d5e290ffd68371 (patch)
treeea417c5d56eb719d81b746a9b8eb77c87ffdfe5c /apps
parent220fafdd72eab05eb49cf6811d15d6618a168910 (diff)
Removed unused debug function which caused a warning for 64bit simulators.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8895 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/jpeg.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/apps/plugins/jpeg.c b/apps/plugins/jpeg.c
index 62d6f1efe9..eb47e142aa 100644
--- a/apps/plugins/jpeg.c
+++ b/apps/plugins/jpeg.c
@@ -2225,19 +2225,6 @@ int scroll_bmp(struct t_disp* pdisp)
/********************* main function *************************/
-/* debug function */
-int wait_for_button(void)
-{
- int button;
-
- do
- {
- button = rb->button_get(true);
- } while ((button & BUTTON_REL) && button != SYS_USB_CONNECTED);
-
- return button;
-}
-
/* callback updating a progress meter while JPEG decoding */
void cb_progess(int current, int total)
{