fix broken term_osd output in update_osd_msg()

Patch by Andrew Savchenko Bircoph A list P ru
Original thread:
03.09.2006 13:22
[MPlayer-dev-eng] [PACTH] mplayer.c: broken term_osd output in	
update_osd_msg()


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19766 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
gpoirier 2006-09-09 11:57:43 +00:00
parent d9c9a14876
commit 4026edffd8
1 changed files with 1 additions and 1 deletions

View File

@ -1457,7 +1457,7 @@ static void update_osd_msg(void) {
#ifdef USE_OSD
if(sh_video) vo_osd_changed(OSDTYPE_OSD); else
#endif
if(term_osd) printf("%s%s\n",term_osd_esc,msg->msg);
if(term_osd) mp_msg(MSGT_CPLAYER,MSGL_STATUS,"%s%s\n",term_osd_esc,msg->msg);
}
return;
}