changeset 13599:094b023bd291

Variables for OSD support should be static
author reimar
date Sun, 10 Oct 2004 12:26:58 +0000
parents 7a626d236929
children a0bb374553a1
files libvo/vo_gl.c
diffstat 1 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- 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;