diff options
| author | Antoine Cellerier <dionoea@videolan.org> | 2006-07-22 23:10:51 +0000 |
|---|---|---|
| committer | Antoine Cellerier <dionoea@videolan.org> | 2006-07-22 23:10:51 +0000 |
| commit | ebfb4f3ab2b0e832ee336ca99f5787536f12af59 (patch) | |
| tree | 579ad1f069692114cb3630b9f2e9180b14c1574a | |
| parent | 2a7aebdc4805422ca1ce25b8d6663d4b6dafa696 (diff) | |
| download | rockbox-ebfb4f3ab2b0e832ee336ca99f5787536f12af59.zip rockbox-ebfb4f3ab2b0e832ee336ca99f5787536f12af59.tar.gz rockbox-ebfb4f3ab2b0e832ee336ca99f5787536f12af59.tar.bz2 rockbox-ebfb4f3ab2b0e832ee336ca99f5787536f12af59.tar.xz | |
Bind F8 key to "on" button (usefull if you don't have a numpad)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10287 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | uisimulator/sdl/button.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/uisimulator/sdl/button.c b/uisimulator/sdl/button.c index c5bc518..5114e7c 100644 --- a/uisimulator/sdl/button.c +++ b/uisimulator/sdl/button.c @@ -106,6 +106,7 @@ void button_event(int key, bool pressed) break; case SDLK_KP_PLUS: + case SDLK_F8: #ifdef BUTTON_ON new_btn = BUTTON_ON; #elif defined(BUTTON_SELECT) && defined(BUTTON_PLAY) |