mirror of https://github.com/mpv-player/mpv
osdep/terminal: fix dummy implementation
c2ed2e7
introduced the terminal_set_mouse_input function to various terminal
backends, but overlooked the dummy backend.
This causes linking errors when trying to build on platforms with no terminal,
as vo_kitty and vo_tct are unconditionally enabled and make use of that
function.
This commit is contained in:
parent
a9d57938b2
commit
32bcaf865b
|
@ -42,3 +42,7 @@ bool terminal_try_attach(void)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void terminal_set_mouse_input(bool enable)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue