1
0
Fork 0
forked from len0rd/rockbox

Move to a proper sdl key config instead of using the d2 pad. make the mouse wheel work, middle click is "select" and right click is "back"

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27891 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2010-08-26 11:43:51 +00:00
parent 1d613bee0f
commit aaa1636a8b
11 changed files with 335 additions and 29 deletions

View file

@ -75,10 +75,13 @@
/* Define this if you do software codec */
#define CONFIG_CODEC SWCODEC
#ifdef ANDROID
#if (CONFIG_PLATFORM & PLATFORM_ANDROID)
#define CONFIG_KEYPAD ANDROID_PAD
#elif (CONFIG_PLATFORM & PLATFORM_SDL)
#define HAVE_SCROLLWHEEL
#define CONFIG_KEYPAD SDL_PAD
#else
#define CONFIG_KEYPAD COWON_D2_PAD
#error unknown platform
#endif
#if (CONFIG_PLATFORM & PLATFORM_SDL)