diff options
author | Marcin Bukat <marcin.bukat@gmail.com> | 2015-01-12 12:02:24 +0100 |
---|---|---|
committer | Marcin Bukat <marcin.bukat@gmail.com> | 2015-01-12 12:02:24 +0100 |
commit | 9ffd9327e339ee9028654000497525b62e826652 (patch) | |
tree | 2ec951353c3d5b7c927b97a448a55e8d7e9ae521 /uisimulator/common | |
parent | bbd7d1dba39ab1a89b4cc0c18352e35349e66faa (diff) | |
download | rockbox-9ffd9327e339ee9028654000497525b62e826652.tar.gz rockbox-9ffd9327e339ee9028654000497525b62e826652.zip |
Fix red/yellow
Change-Id: Ie01251af2cd843979b5fdefcfa541ba377d13bd7
Diffstat (limited to 'uisimulator/common')
-rw-r--r-- | uisimulator/common/backlight-sim.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/uisimulator/common/backlight-sim.h b/uisimulator/common/backlight-sim.h index f7e35dcc75..cd77d0287b 100644 --- a/uisimulator/common/backlight-sim.h +++ b/uisimulator/common/backlight-sim.h | |||
@@ -32,10 +32,10 @@ void backlight_hw_off(void); | |||
32 | void backlight_hw_brightness(int val); | 32 | void backlight_hw_brightness(int val); |
33 | #endif /* HAVE_BACKLIGHT_BRIGHTNESS */ | 33 | #endif /* HAVE_BACKLIGHT_BRIGHTNESS */ |
34 | #ifdef HAVE_BUTTON_LIGHT | 34 | #ifdef HAVE_BUTTON_LIGHT |
35 | voidbuttonlight_hw_on(void); | 35 | void buttonlight_hw_on(void); |
36 | voidbuttonlight_hw_off(void); | 36 | void buttonlight_hw_off(void); |
37 | #ifdef HAVE_BUTTONLIGHT_BRIGHTNESS | 37 | #ifdef HAVE_BUTTONLIGHT_BRIGHTNESS |
38 | voidbuttonlight_hw_set_brightness(int val); | 38 | void buttonlight_hw_set_brightness(int val); |
39 | #endif /* HAVE_BUTTONLIGHT_BRIGHTNESS */ | 39 | #endif /* HAVE_BUTTONLIGHT_BRIGHTNESS */ |
40 | #endif /* HAVE_BUTTON_LIGHT */ | 40 | #endif /* HAVE_BUTTON_LIGHT */ |
41 | 41 | ||