# HG changeset patch # User reimar # Date 1097411218 0 # Node ID 094b023bd29107bf8d1c56a51bacd3d513c39867 # Parent 7a626d23692939be50562edd5b1ca0c84c94dced Variables for OSD support should be static diff -r 7a626d236929 -r 094b023bd291 libvo/vo_gl.c --- a/libvo/vo_gl.c Sat Oct 09 22:14:36 2004 +0000 +++ b/libvo/vo_gl.c Sun Oct 10 12:26:58 2004 +0000 @@ -42,14 +42,14 @@ GLX_DOUBLEBUFFER, None }; -int use_osd; +static int use_osd; #define MAX_OSD_PARTS 20 -GLuint osdtex[MAX_OSD_PARTS]; +static GLuint osdtex[MAX_OSD_PARTS]; #ifndef FAST_OSD -GLuint osdatex[MAX_OSD_PARTS]; +static GLuint osdatex[MAX_OSD_PARTS]; #endif -GLuint osdDispList[MAX_OSD_PARTS]; -int osdtexCnt = 0; +static GLuint osdDispList[MAX_OSD_PARTS]; +static int osdtexCnt = 0; static uint32_t image_width; static uint32_t image_height;