summaryrefslogtreecommitdiff
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
parent220fafdd72eab05eb49cf6811d15d6618a168910 (diff)
downloadrockbox-8dccb294a851f8814f739cefa5d5e290ffd68371.tar.gz
rockbox-8dccb294a851f8814f739cefa5d5e290ffd68371.zip
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
-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)
2225 2225
2226/********************* main function *************************/ 2226/********************* main function *************************/
2227 2227
2228/* debug function */
2229int wait_for_button(void)
2230{
2231 int button;
2232
2233 do
2234 {
2235 button = rb->button_get(true);
2236 } while ((button & BUTTON_REL) && button != SYS_USB_CONNECTED);
2237
2238 return button;
2239}
2240
2241/* callback updating a progress meter while JPEG decoding */ 2228/* callback updating a progress meter while JPEG decoding */
2242void cb_progess(int current, int total) 2229void cb_progess(int current, int total)
2243{ 2230{