diff options
author | Kjell Ericson <kjell@haxx.se> | 2004-06-18 10:05:46 +0000 |
---|---|---|
committer | Kjell Ericson <kjell@haxx.se> | 2004-06-18 10:05:46 +0000 |
commit | 8586786d98490267fd703b9ca7d1e2d50b52bc58 (patch) | |
tree | f9bb23a79ed8ef672c24b074187f5b030bca816d | |
parent | fb9dbb623a40a312288beca68d3a5a466b0a2a88 (diff) |
Added backlight_off to simulator stubs.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4770 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | uisimulator/common/stubs.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/uisimulator/common/stubs.c b/uisimulator/common/stubs.c index 891a1110fc..ceb8ba1ebe 100644 --- a/uisimulator/common/stubs.c +++ b/uisimulator/common/stubs.c @@ -37,6 +37,11 @@ void backlight_on(void) /* we could do something better here! */ } +void backlight_off(void) +{ + /* we could do something better here! */ +} + void backlight_time(int dummy) { (void)dummy; |