diff options
| author | Jonas Häggqvist <rasher@rasher.dk> | 2005-05-16 12:15:24 +0000 |
|---|---|---|
| committer | Jonas Häggqvist <rasher@rasher.dk> | 2005-05-16 12:15:24 +0000 |
| commit | f414fb1e22b33bd0f4d9692bcea3da337e6aff7a (patch) | |
| tree | 596db124ffb917c8da040a7142cf22458b340b91 | |
| parent | a7d8829218f1fb7eb27fbcb691badc22e85191fb (diff) | |
| download | rockbox-f414fb1e22b33bd0f4d9692bcea3da337e6aff7a.zip rockbox-f414fb1e22b33bd0f4d9692bcea3da337e6aff7a.tar.gz rockbox-f414fb1e22b33bd0f4d9692bcea3da337e6aff7a.tar.bz2 rockbox-f414fb1e22b33bd0f4d9692bcea3da337e6aff7a.tar.xz | |
Fix simulator builds
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6478 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/plugins/logo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/logo.c b/apps/plugins/logo.c index 080da6a..9cace89 100644 --- a/apps/plugins/logo.c +++ b/apps/plugins/logo.c @@ -24,7 +24,7 @@ #define DISPLAY_HEIGHT LCD_HEIGHT #define RAND_SCALE 5 -#ifdef IRIVER_H100 +#if defined(IRIVER_H100) && !defined(SIMULATOR) #define REMOTE_WIDTH 134 #define REMOTE_HEIGHT 65 #define REMOTE_LOGO_WIDTH 91 |