summaryrefslogtreecommitdiff
path: root/uisimulator/common/stubs.c
diff options
context:
space:
mode:
authorKjell Ericson <kjell@haxx.se>2002-10-28 20:00:19 +0000
committerKjell Ericson <kjell@haxx.se>2002-10-28 20:00:19 +0000
commit32622072237b108b6926d40c75053d8fd1afb017 (patch)
treed3f0e69e960f6f31e20a761a685c167cf90d47c8 /uisimulator/common/stubs.c
parent3714f468c1ef945d3dd3f6445036be8c9fff0cc8 (diff)
downloadrockbox-32622072237b108b6926d40c75053d8fd1afb017.tar.gz
rockbox-32622072237b108b6926d40c75053d8fd1afb017.zip
Updated for better player simulator.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2760 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/common/stubs.c')
-rw-r--r--uisimulator/common/stubs.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/uisimulator/common/stubs.c b/uisimulator/common/stubs.c
index 89e3cea102..9b628828ae 100644
--- a/uisimulator/common/stubs.c
+++ b/uisimulator/common/stubs.c
@@ -29,6 +29,9 @@
29#include "string.h" 29#include "string.h"
30#include "lcd.h" 30#include "lcd.h"
31 31
32extern char having_new_lcd;
33
34
32void backlight_on(void) 35void backlight_on(void)
33{ 36{
34 /* we could do something better here! */ 37 /* we could do something better here! */
@@ -163,7 +166,7 @@ bool oscillograph(void)
163 166
164bool has_new_lcd(void) 167bool has_new_lcd(void)
165{ 168{
166 return false; 169 return having_new_lcd;
167} 170}
168 171
169void lcd_set_contrast( int x ) 172void lcd_set_contrast( int x )