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:
averne 2024-11-02 17:09:40 +01:00 committed by Kacper Michajłow
parent a9d57938b2
commit 32bcaf865b
1 changed files with 4 additions and 0 deletions

View File

@ -42,3 +42,7 @@ bool terminal_try_attach(void)
{
return false;
}
void terminal_set_mouse_input(bool enable)
{
}