summaryrefslogtreecommitdiff
path: root/uisimulator
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 /uisimulator
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
Diffstat (limited to 'uisimulator')
-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 @@
29#include <ctype.h> 29#include <ctype.h>
30#include <time.h> 30#include <time.h>
31 31
32#include "config.h"
32#include "screenhack.h" 33#include "screenhack.h"
33 34
34#include "version.h" 35#include "version.h"
@@ -61,7 +62,11 @@ XrmOptionDescRec options [] = {
61char *progclass = "rockboxui"; 62char *progclass = "rockboxui";
62 63
63char *defaults [] = { 64char *defaults [] = {
65#ifdef IRIVER_H100
66 ".background: lightblue",
67#else
64 ".background: lightgreen", 68 ".background: lightgreen",
69#endif
65 ".foreground: black", 70 ".foreground: black",
66 "*help: false", 71 "*help: false",
67 0 72 0