From 24f4a2a8cfd561657ce25ebf93470716f07397fe Mon Sep 17 00:00:00 2001 From: Barry Wardell Date: Thu, 26 Oct 2006 13:38:09 +0000 Subject: Allow the Sansa e200 UI simulator to be built. Thanks to Andre Smith for the nice image of the Sansa. Lots more to be done including testing and tweaking the keymaps and modifying the plugins for the Sansa's 176x220 LCD. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11351 a1c6a512-1295-4272-9138-f99709370657 --- uisimulator/sdl/button.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'uisimulator/sdl/button.c') diff --git a/uisimulator/sdl/button.c b/uisimulator/sdl/button.c index 22cfda1119..4408dde3e9 100644 --- a/uisimulator/sdl/button.c +++ b/uisimulator/sdl/button.c @@ -467,17 +467,17 @@ void button_event(int key, bool pressed) break; case SDLK_KP8: case SDLK_UP: - new_btn = BUTTON_UP; + new_btn = BUTTON_SCROLL_UP; break; case SDLK_KP2: case SDLK_DOWN: - new_btn = BUTTON_DOWN; + new_btn = BUTTON_SCROLL_DOWN; break; case SDLK_KP9: - new_btn = BUTTON_SCROLL_UP; + new_btn = BUTTON_UP; break; case SDLK_KP3: - new_btn = BUTTON_SCROLL_DOWN; + new_btn = BUTTON_DOWN; break; case SDLK_KP1: new_btn = BUTTON_POWER; @@ -485,6 +485,10 @@ void button_event(int key, bool pressed) case SDLK_KP7: new_btn = BUTTON_REC; break; + case SDLK_KP5: + case SDLK_SPACE: + new_btn = BUTTON_SELECT; + break; #endif /* CONFIG_KEYPAD */ case SDLK_KP0: -- cgit v1.2.3