summaryrefslogtreecommitdiff
path: root/uisimulator
diff options
context:
space:
mode:
authorJörg Hohensohn <hohensoh@rockbox.org>2003-12-20 10:00:37 +0000
committerJörg Hohensohn <hohensoh@rockbox.org>2003-12-20 10:00:37 +0000
commita5e1d06354fe1cb1dc12edd45b7f9ccb632df3e4 (patch)
tree8ae4aa3cec2e4697289153b641787c495ab8f19d /uisimulator
parent2a8386106b48e94051fe26659b95876cb442e71d (diff)
downloadrockbox-a5e1d06354fe1cb1dc12edd45b7f9ccb632df3e4.tar.gz
rockbox-a5e1d06354fe1cb1dc12edd45b7f9ccb632df3e4.zip
Upside Down option for display (and buttons) now wired into the display settings menu, persistence, simulator stubs
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4168 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator')
-rw-r--r--uisimulator/common/lcd-common.c4
-rw-r--r--uisimulator/common/stubs.c5
2 files changed, 9 insertions, 0 deletions
diff --git a/uisimulator/common/lcd-common.c b/uisimulator/common/lcd-common.c
index 719c61b488..0b0d3e0716 100644
--- a/uisimulator/common/lcd-common.c
+++ b/uisimulator/common/lcd-common.c
@@ -41,3 +41,7 @@ void lcd_blit(unsigned char* p_data, int x, int y, int width, int height,
41 (void)stride; 41 (void)stride;
42} 42}
43 43
44void lcd_set_flip(bool yesno)
45{
46 (void)yesno;
47} \ No newline at end of file
diff --git a/uisimulator/common/stubs.c b/uisimulator/common/stubs.c
index d3e5189d49..533b909786 100644
--- a/uisimulator/common/stubs.c
+++ b/uisimulator/common/stubs.c
@@ -220,3 +220,8 @@ void cpu_sleep(bool enabled)
220{ 220{
221 (void)enabled; 221 (void)enabled;
222} 222}
223
224void button_set_flip(bool yesno)
225{
226 (void)yesno;
227}