diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-05-23 16:23:25 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-05-23 16:23:25 +0000 |
commit | ac31e6af875eed8dce724604cff94da107a4700b (patch) | |
tree | 9f2e3cc33933ae69753314ffea509741b35ed45b /apps/plugins | |
parent | ed42300bff0d7e5d6f6af3a41fd5d0249830bdfa (diff) |
Remote LCD support added to the x11 simulator, take 1. The win32 simulator
still builds, but shows no remote LCD yet.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6510 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
-rw-r--r-- | apps/plugins/logo.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/logo.c b/apps/plugins/logo.c index 9cace8943c..03250f888f 100644 --- a/apps/plugins/logo.c +++ b/apps/plugins/logo.c @@ -24,9 +24,9 @@ #define DISPLAY_HEIGHT LCD_HEIGHT #define RAND_SCALE 5 -#if defined(IRIVER_H100) && !defined(SIMULATOR) -#define REMOTE_WIDTH 134 -#define REMOTE_HEIGHT 65 +#ifdef HAVE_REMOTE_LCD +#define REMOTE_WIDTH LCD_REMOTE_WIDTH +#define REMOTE_HEIGHT LCD_REMOTE_HEIGHT #define REMOTE_LOGO_WIDTH 91 #define REMOTE_LOGO_HEIGHT 32 #define REMOTE_LOGO rockbox91x32 |