1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-22 07:46:55 +00:00

manu.c: Remove unused static function menu_text_get_next_line

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31727 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2010-07-12 21:38:39 +00:00 committed by Uoti Urpala
parent ef236e1fe2
commit c2e37e4346

View File

@ -738,24 +738,6 @@ int menu_text_num_lines(char* txt, int max_width) {
return l;
}
static char* menu_text_get_next_line(char* txt, int max_width)
{
int i = 0;
render_txt(txt);
while (*txt) {
int c=utf8_get_char((const char**)&txt);
if(c == '\n') {
txt++;
break;
}
i += vo_font->width[c];
if(i >= max_width)
break;
i += vo_font->charspace;
}
return txt;
}
void menu_draw_box(mp_image_t* mpi,unsigned char grey,unsigned char alpha, int x, int y, int w, int h) {
draw_alpha_f draw_alpha = get_draw_alpha(mpi->imgfmt);