summaryrefslogtreecommitdiffstats
path: root/libvo/vo_directfb2.c
diff options
context:
space:
mode:
authoralbeu <albeu@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-11-02 21:50:55 +0000
committeralbeu <albeu@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-11-02 21:50:55 +0000
commit374db42e17d35f8ec2cfdb7576a4e7f68202b047 (patch)
tree7e23e7ec683a7e3552eff838f8351f66f25fb9d0 /libvo/vo_directfb2.c
parent13cf9144bb8a0b1395918d6c1369da74e3655bf4 (diff)
downloadmpv-374db42e17d35f8ec2cfdb7576a4e7f68202b047.tar.bz2
mpv-374db42e17d35f8ec2cfdb7576a4e7f68202b047.tar.xz
libvo input cleanup: remove the dependency on libinput,
remove most of the crappy mappings (like O->o or ESC->q). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16893 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/vo_directfb2.c')
-rw-r--r--libvo/vo_directfb2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/vo_directfb2.c b/libvo/vo_directfb2.c
index 3a38eb7408..f34399879f 100644
--- a/libvo/vo_directfb2.c
+++ b/libvo/vo_directfb2.c
@@ -909,7 +909,7 @@ if (buffer) {
if (event.type == DIET_KEYPRESS) {
switch (event.key_symbol) {
case DIKS_ESCAPE:
- mplayer_put_key('q');
+ mplayer_put_key(KEY_ESC);
break;
case DIKS_PAGE_UP: mplayer_put_key(KEY_PAGE_UP);break;
case DIKS_PAGE_DOWN: mplayer_put_key(KEY_PAGE_DOWN);break;