From 2b5c2c8e44bba096389ed3f2845d27beaf15b43b Mon Sep 17 00:00:00 2001 From: "Avi Halachmi (:avih)" Date: Mon, 16 Aug 2021 00:58:51 +0300 Subject: 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 . --- video/out/vo_tct.c | 1 + 1 file changed, 1 insertion(+) diff --git a/video/out/vo_tct.c b/video/out/vo_tct.c index 9325d3cbfa..7fa66170f4 100644 --- a/video/out/vo_tct.c +++ b/video/out/vo_tct.c @@ -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" -- cgit v1.2.3