Revert "win32: add mappings for some special keys"

This reverts commit fc9695e63b.

Users were complaining that both mpv and something else (what? I don't
know) respond to some multimedia keys, such as volume change.
This commit is contained in:
wm4 2015-06-24 15:14:38 +02:00
parent a70c8105fc
commit 1b7ce759b1
1 changed files with 0 additions and 9 deletions

View File

@ -66,15 +66,6 @@ static const struct keymap vk_map[] = {
{VK_RIGHT, MP_KEY_KP6}, {VK_HOME, MP_KEY_KP7}, {VK_UP, MP_KEY_KP8},
{VK_PRIOR, MP_KEY_KP9}, {VK_DELETE, MP_KEY_KPDEL},
// multimedia and other special keys
{VK_VOLUME_MUTE, MP_KEY_MUTE},
{VK_VOLUME_DOWN, MP_KEY_VOLUME_DOWN},
{VK_VOLUME_UP, MP_KEY_VOLUME_UP},
{VK_MEDIA_NEXT_TRACK, MP_KEY_NEXT},
{VK_MEDIA_PREV_TRACK, MP_KEY_PREV},
{VK_MEDIA_STOP, MP_KEY_STOP},
{VK_MEDIA_PLAY_PAUSE, MP_KEY_PLAYPAUSE},
{0, 0}
};