From 5c87a98b97b9ab6bd9647bb0bb8d00f58d5f179b Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Wed, 2 Apr 2008 22:16:14 +0000 Subject: Greyscale library: * Implement linearisation curve flipping for 1st/2nd Gen iPods (LCD is inverted when backlight is on, so the curve is also inverted). This needs a slight extension of is_backlight_on() functionality in the core. * Thorough recalibration of all reachable greyscale targets, and #ifdef cleanup. * Reduce on-target gamma a bit, because the displayable contrast range of a monochrome/greyscale isn't that high. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16936 a1c6a512-1295-4272-9138-f99709370657 --- uisimulator/sdl/button.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'uisimulator/sdl') diff --git a/uisimulator/sdl/button.c b/uisimulator/sdl/button.c index 03f7dc1e96..15764da900 100644 --- a/uisimulator/sdl/button.c +++ b/uisimulator/sdl/button.c @@ -883,14 +883,16 @@ void button_event(int key, bool pressed) #ifdef HAVE_BACKLIGHT #ifdef HAVE_REMOTE_LCD if (btn & BUTTON_REMOTE) { - if (!remote_filter_first_keypress || is_remote_backlight_on()) + if (!remote_filter_first_keypress + || is_remote_backlight_on(false)) queue_post(&button_queue, btn, data); else skip_remote_release = true; } else #endif - if (!filter_first_keypress || is_backlight_on()) + if (!filter_first_keypress + || is_backlight_on(false)) queue_post(&button_queue, btn, data); else skip_release = true; -- cgit v1.2.3