mirror of
https://github.com/mpv-player/mpv
synced 2025-01-12 18:02:36 +00:00
The CONFIG_TV_TELETEXT preprocessor directive is defined/undefined,
so use it with #ifdef instead of #if; fixes the warning: libvo/sub.c:1233:5: warning: "CONFIG_TV_TELETEXT" is not defined git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28621 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
991d64b31f
commit
de53a241ed
@ -1230,7 +1230,7 @@ void vo_init_osd(void){
|
||||
#ifdef CONFIG_DVDNAV
|
||||
new_osd_obj(OSDTYPE_DVDNAV);
|
||||
#endif
|
||||
#if CONFIG_TV_TELETEXT
|
||||
#ifdef CONFIG_TV_TELETEXT
|
||||
new_osd_obj(OSDTYPE_TELETEXT);
|
||||
#endif
|
||||
#ifdef CONFIG_FREETYPE
|
||||
|
Loading…
Reference in New Issue
Block a user