diff options
author | Jonathan Gordon <rockbox@jdgordon.info> | 2008-01-10 08:08:31 +0000 |
---|---|---|
committer | Jonathan Gordon <rockbox@jdgordon.info> | 2008-01-10 08:08:31 +0000 |
commit | 81ba146706e0a1c21c59f11022767577be7d71b2 (patch) | |
tree | afce479f5133dcfaaaa71b2aa47a2e4f7c1004f3 /uisimulator | |
parent | 4d238c14d70199e3a991db0c3b938eb4b0f6c93a (diff) |
Accept FS#8341 - rename BUTTON_SCROLL_UP/DOWN to FWD/BACK on the e200 to make it consistant with the ipods. apart from removing a bit of confusion, it fixes the wheel in pictureflow and possibly elsewhere.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16045 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator')
-rw-r--r-- | uisimulator/sdl/button.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/uisimulator/sdl/button.c b/uisimulator/sdl/button.c index 504533bc3a..5e46cbe7c6 100644 --- a/uisimulator/sdl/button.c +++ b/uisimulator/sdl/button.c @@ -537,11 +537,11 @@ void button_event(int key, bool pressed) break; case SDLK_KP8: case SDLK_UP: - new_btn = BUTTON_SCROLL_UP; + new_btn = BUTTON_SCROLL_BACK; break; case SDLK_KP2: case SDLK_DOWN: - new_btn = BUTTON_SCROLL_DOWN; + new_btn = BUTTON_SCROLL_FWD; break; case SDLK_KP9: new_btn = BUTTON_UP; |