vo_tct: fix half-block on windows

On windows the UTF-8 strings are translated to wchar_t when printed to
the console, and some escape sequences are also translated, however,
this only works when printf is mapped to mp_printf, and for that to
happen we need to include osdep/io.h .
This commit is contained in:
Avi Halachmi (:avih) 2021-08-16 00:58:51 +03:00
parent 2780bf32d0
commit 2b5c2c8e44
1 changed files with 1 additions and 0 deletions

View File

@ -28,6 +28,7 @@
#include "options/m_config.h"
#include "config.h"
#include "osdep/terminal.h"
#include "osdep/io.h"
#include "vo.h"
#include "sub/osd.h"
#include "video/sws_utils.h"