From b9cb011ba5add82a63eed5850975abf43f257b72 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Wed, 5 Jun 2013 00:00:11 +0200 Subject: keycodes: fix copy paste error Makes 213ad5d behave has intended. --- core/input/keycodes.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/input/keycodes.h b/core/input/keycodes.h index 8770f8abfa..92608aa6fa 100644 --- a/core/input/keycodes.h +++ b/core/input/keycodes.h @@ -191,9 +191,9 @@ // Apple Media Keys input module #define MP_MK_BASE (MP_KEY_BASE+0xF0) -#define MP_MK_PLAY (MP_AR_BASE + 0) -#define MP_MK_PREV (MP_AR_BASE + 1) -#define MP_MK_NEXT (MP_AR_BASE + 2) +#define MP_MK_PLAY (MP_MK_BASE + 0) +#define MP_MK_PREV (MP_MK_BASE + 1) +#define MP_MK_NEXT (MP_MK_BASE + 2) /* Special keys */ #define MP_KEY_INTERN (MP_KEY_BASE+0x1000) -- cgit v1.2.3