diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2005-06-29 02:01:24 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2005-06-29 02:01:24 +0000 |
| commit | 5eb0fff07be422884c42ae465bb04f6ac3722a4d (patch) | |
| tree | 8d18ed315ef45f0ed32cff3ce3df6658a9b268d2 | |
| parent | ce19ce00b784036a06478acff7b6f830bd7837db (diff) | |
| download | rockbox-5eb0fff07be422884c42ae465bb04f6ac3722a4d.zip rockbox-5eb0fff07be422884c42ae465bb04f6ac3722a4d.tar.gz rockbox-5eb0fff07be422884c42ae465bb04f6ac3722a4d.tar.bz2 rockbox-5eb0fff07be422884c42ae465bb04f6ac3722a4d.tar.xz | |
Fixed red H1x0 simulator build.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6909 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/plugin.c | 2 | ||||
| -rw-r--r-- | apps/plugin.h | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index bd8ea2f..bd2f0bc 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -138,7 +138,9 @@ static const struct plugin_api rockbox_api = { lcd_remote_puts, lcd_remote_puts_scroll, lcd_remote_stop_scroll, +#ifndef SIMULATOR lcd_remote_roll, +#endif lcd_remote_set_drawmode, lcd_remote_get_drawmode, lcd_remote_setfont, diff --git a/apps/plugin.h b/apps/plugin.h index b2e798d..507d36d 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -194,9 +194,9 @@ struct plugin_api { void (*lcd_remote_puts)(int x, int y, const unsigned char *string); void (*lcd_remote_lcd_puts_scroll)(int x, int y, const unsigned char* string); void (*lcd_remote_lcd_stop_scroll)(void); - +#ifndef SIMULATOR void (*lcd_remote_roll)(int pixels); - +#endif void (*lcd_remote_set_drawmode)(int mode); int (*lcd_remote_get_drawmode)(void); void (*lcd_remote_setfont)(int font); |