summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorStefano Pigozzi <stefano.pigozzi@gmail.com>2013-06-05 00:00:11 +0200
committerStefano Pigozzi <stefano.pigozzi@gmail.com>2013-06-05 00:02:29 +0200
commitb9cb011ba5add82a63eed5850975abf43f257b72 (patch)
tree2e6adfe103b265ab4b3f5bee109d38cc3764a9bc /core
parent85c2a4a1d2b23959d9f068db19f5a6f889f5b13c (diff)
downloadmpv-b9cb011ba5add82a63eed5850975abf43f257b72.tar.bz2
mpv-b9cb011ba5add82a63eed5850975abf43f257b72.tar.xz
keycodes: fix copy paste error
Makes 213ad5d behave has intended.
Diffstat (limited to 'core')
-rw-r--r--core/input/keycodes.h6
1 files 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)