Commit 868cc847 authored by Damien Fouilleul's avatar Damien Fouilleul

directx: fixed 'hotkeys not working in fullscreen mode'

parent 59f68250
......@@ -266,7 +266,7 @@ void E_(DirectXEventThread)( event_thread_t *p_event )
val.i_int |= KEY_MODIFIER_ALT;
}
var_Set( p_event->p_libvlc, "key-pressed", val );
var_Set( p_event->p_vlc, "key-pressed", val );
}
break;
......@@ -294,7 +294,7 @@ void E_(DirectXEventThread)( event_thread_t *p_event )
val.i_int |= KEY_MODIFIER_ALT;
}
var_Set( p_event->p_libvlc, "key-pressed", val );
var_Set( p_event->p_vlc, "key-pressed", val );
}
break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment