summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-02-22 13:02:33 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-02-22 13:02:33 +0000
commitd65908fb875619d212d8d94634ae56de277b75d5 (patch)
tree500fa70d4aa4bf66f82ec8e03ab47a0a05f45e3a /apps
parentca42601e1f23cdf43f52f8f317b660e20d885e5b (diff)
downloadrockbox-d65908fb875619d212d8d94634ae56de277b75d5.tar.gz
rockbox-d65908fb875619d212d8d94634ae56de277b75d5.zip
use the sim version of the icons for the sims
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6037 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/plugin.c2
-rw-r--r--apps/plugin.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 8ec4c08258..f8f8fb18d4 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -93,7 +93,7 @@ static const struct plugin_api rockbox_api = {
93 lcd_putc, 93 lcd_putc,
94 lcd_put_cursor, 94 lcd_put_cursor,
95 lcd_remove_cursor, 95 lcd_remove_cursor,
96 lcd_icon, 96 PREFIX(lcd_icon),
97#else 97#else
98 lcd_putsxy, 98 lcd_putsxy,
99 lcd_puts_style, 99 lcd_puts_style,
diff --git a/apps/plugin.h b/apps/plugin.h
index 896565e9a0..ed34d9ac19 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -131,7 +131,7 @@ struct plugin_api {
131 void (*lcd_putc)(int x, int y, unsigned short ch); 131 void (*lcd_putc)(int x, int y, unsigned short ch);
132 void (*lcd_put_cursor)(int x, int y, char cursor_char); 132 void (*lcd_put_cursor)(int x, int y, char cursor_char);
133 void (*lcd_remove_cursor)(void); 133 void (*lcd_remove_cursor)(void);
134 void (*lcd_icon)(int icon, bool enable); 134 void (*PREFIX(lcd_icon))(int icon, bool enable);
135#else 135#else
136 void (*lcd_putsxy)(int x, int y, const unsigned char *string); 136 void (*lcd_putsxy)(int x, int y, const unsigned char *string);
137 void (*lcd_puts_style)(int x, int y, const unsigned char *str, int style); 137 void (*lcd_puts_style)(int x, int y, const unsigned char *str, int style);