summaryrefslogtreecommitdiffstats
path: root/uisimulator/x11/screenhack.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-08-09 09:13:40 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-08-09 09:13:40 +0000
commit2ed1052a6db90aade49bb9180f28551179639d22 (patch)
treed598e1e0e074b97e625b3196ca911bda1f751f8c /uisimulator/x11/screenhack.c
parent7cdf5c8cabcbf36affb1e5768bacb9823c204a2e (diff)
downloadrockbox-2ed1052a6db90aade49bb9180f28551179639d22.tar.gz
rockbox-2ed1052a6db90aade49bb9180f28551179639d22.zip
fix window sizes to match the screen size, enlarged the player sim font
to use the 12x16 one git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1635 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/x11/screenhack.c')
-rw-r--r--uisimulator/x11/screenhack.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/uisimulator/x11/screenhack.c b/uisimulator/x11/screenhack.c
index 72915f41a5..3b94309a7f 100644
--- a/uisimulator/x11/screenhack.c
+++ b/uisimulator/x11/screenhack.c
@@ -83,7 +83,13 @@ static XrmOptionDescRec default_options [] = {
static char *default_defaults[] = {
".root: false",
- "*geometry: 120x70", /* this should be .geometry, but nooooo... */
+ "*geometry: "
+#ifdef HAVE_LCD_BITMAP
+ "120x68"
+#else
+ "138x54"
+#endif
+ , /* this should be .geometry, but nooooo... */
"*mono: false",
"*installColormap: false",
"*visualID: default",