summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2004-09-16 20:03:03 +0000
committerBjörn Stenberg <bjorn@haxx.se>2004-09-16 20:03:03 +0000
commitbbcd7406fafc5efe2ab5be3922f0f654f9ba076a (patch)
treeb11a6f3f133358c46e67ef154499f5320359fa6a
parent4bdbcd6a7cdc6b5e5fb10369d2f60caff69b4805 (diff)
downloadrockbox-bbcd7406fafc5efe2ab5be3922f0f654f9ba076a.tar.gz
rockbox-bbcd7406fafc5efe2ab5be3922f0f654f9ba076a.zip
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.c5
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