diff options
author | Andrew Mahone <andrew.mahone@gmail.com> | 2009-06-01 21:08:49 +0000 |
---|---|---|
committer | Andrew Mahone <andrew.mahone@gmail.com> | 2009-06-01 21:08:49 +0000 |
commit | c1c3d05961388114779c6fd8316ab1d081a3b4b1 (patch) | |
tree | abd18c238922d61233346d107eae087f5283bd2d /apps/action.h | |
parent | fd11471a3f9bfbb5f5bdf22866e861bae56ad8ea (diff) | |
download | rockbox-c1c3d05961388114779c6fd8316ab1d081a3b4b1.tar.gz rockbox-c1c3d05961388114779c6fd8316ab1d081a3b4b1.tar.bz2 rockbox-c1c3d05961388114779c6fd8316ab1d081a3b4b1.zip |
Fix PF keymap issue caused by conflict between new CONTEXT_PLUGIN and ALLOW_SOFTLOCK, by changing value of ALLOW_SOFTLOCK. Bump min plugin version as value passed to a core function changed, and sort plugin API.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21161 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/action.h')
-rw-r--r-- | apps/action.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/action.h b/apps/action.h index 616fad57e9..61c214c609 100644 --- a/apps/action.h +++ b/apps/action.h @@ -36,7 +36,7 @@ #define LAST_ITEM_IN_LIST__NEXTLIST(a) { a, BUTTON_NONE, BUTTON_NONE } #ifndef HAS_BUTTON_HOLD -#define ALLOW_SOFTLOCK 0x10000000 /* will be stripped.. never needed except in calls to get_action() */ +#define ALLOW_SOFTLOCK 0x08000000 /* will be stripped.. never needed except in calls to get_action() */ #else #define ALLOW_SOFTLOCK 0 #endif |