diff options
author | Björn Stenberg <bjorn@haxx.se> | 2004-09-16 20:03:03 +0000 |
---|---|---|
committer | Björn Stenberg <bjorn@haxx.se> | 2004-09-16 20:03:03 +0000 |
commit | bbcd7406fafc5efe2ab5be3922f0f654f9ba076a (patch) | |
tree | b11a6f3f133358c46e67ef154499f5320359fa6a | |
parent | 4bdbcd6a7cdc6b5e5fb10369d2f60caff69b4805 (diff) |
The Iriver display is blue
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5083 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | uisimulator/x11/uibasic.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/uisimulator/x11/uibasic.c b/uisimulator/x11/uibasic.c index 82ce39973c..78abb2f5db 100644 --- a/uisimulator/x11/uibasic.c +++ b/uisimulator/x11/uibasic.c @@ -29,6 +29,7 @@ #include <ctype.h> #include <time.h> +#include "config.h" #include "screenhack.h" #include "version.h" @@ -61,7 +62,11 @@ XrmOptionDescRec options [] = { char *progclass = "rockboxui"; char *defaults [] = { +#ifdef IRIVER_H100 + ".background: lightblue", +#else ".background: lightgreen", +#endif ".foreground: black", "*help: false", 0 |