Disable unused code, fixes the warning:

vesa_lvo.c: At top level:
vesa_lvo.c:248: warning: 'draw_alpha' defined but not used


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25547 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-12-30 10:54:04 +00:00
parent 1dabdaa11e
commit 09260c18d1
1 changed files with 2 additions and 0 deletions

View File

@ -234,6 +234,7 @@ void vlvo_flip_page(void)
}
}
#if 0
static void draw_alpha_null(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride)
{
UNUSED(x0);
@ -280,6 +281,7 @@ static void draw_alpha(int x0,int y0, int w,int h, unsigned char* src, unsigned
draw_alpha_null(x0,y0,w,h,src,srca,stride);
}
}
#endif
void vlvo_draw_osd(void)
{