diff options
author | Jörg Hohensohn <hohensoh@rockbox.org> | 2003-12-20 10:00:37 +0000 |
---|---|---|
committer | Jörg Hohensohn <hohensoh@rockbox.org> | 2003-12-20 10:00:37 +0000 |
commit | a5e1d06354fe1cb1dc12edd45b7f9ccb632df3e4 (patch) | |
tree | 8ae4aa3cec2e4697289153b641787c495ab8f19d /uisimulator/common | |
parent | 2a8386106b48e94051fe26659b95876cb442e71d (diff) |
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/common')
-rw-r--r-- | uisimulator/common/lcd-common.c | 4 | ||||
-rw-r--r-- | uisimulator/common/stubs.c | 5 |
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, (void)stride; } +void lcd_set_flip(bool yesno) +{ + (void)yesno; +}
\ 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) { (void)enabled; } + +void button_set_flip(bool yesno) +{ + (void)yesno; +} |