summaryrefslogtreecommitdiff
path: root/firmware/drivers
diff options
context:
space:
mode:
authorHristo Kovachev <bger@rockbox.org>2006-05-18 11:27:10 +0000
committerHristo Kovachev <bger@rockbox.org>2006-05-18 11:27:10 +0000
commit372ae28da96c4233af8e02b7b8895d0cc805cf95 (patch)
tree1a1b688b979406f6da576a0aeff6c89784664914 /firmware/drivers
parent8fb9f023acc2a665c1343a4878086df4ed31b686 (diff)
downloadrockbox-372ae28da96c4233af8e02b7b8895d0cc805cf95.tar.gz
rockbox-372ae28da96c4233af8e02b7b8895d0cc805cf95.zip
Oops, move out the define from the #ifndef SIMULATOR
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9956 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/drivers')
-rw-r--r--firmware/drivers/lcd-h100-remote.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/drivers/lcd-h100-remote.c b/firmware/drivers/lcd-h100-remote.c
index 99f1b9aa55..4d58db9a56 100644
--- a/firmware/drivers/lcd-h100-remote.c
+++ b/firmware/drivers/lcd-h100-remote.c
@@ -73,6 +73,8 @@ static int xmargin = 0;
73static int ymargin = 0; 73static int ymargin = 0;
74static int curfont = FONT_SYSFIXED; 74static int curfont = FONT_SYSFIXED;
75 75
76#define LCD_REMOTE_DEFAULT_CONTRAST 42;
77
76#ifndef SIMULATOR 78#ifndef SIMULATOR
77static int xoffset; /* needed for flip */ 79static int xoffset; /* needed for flip */
78 80
@@ -94,7 +96,6 @@ static struct event_queue remote_scroll_queue;
94static bool remote_initialized = false; 96static bool remote_initialized = false;
95static int _remote_type = 0; 97static int _remote_type = 0;
96 98
97#define LCD_REMOTE_DEFAULT_CONTRAST 42;
98/* cached settings values */ 99/* cached settings values */
99static bool cached_invert = false; 100static bool cached_invert = false;
100static bool cached_flip = false; 101static bool cached_flip = false;