Update of /cvsroot/plib/plib/src/ssg
In directory usw-pr-cvs1:/tmp/cvs-serv23171
Modified Files:
ssg.cxx ssgParser.cxx
Log Message:
Cleanups
Index: ssg.cxx
===================================================================
RCS file: /cvsroot/plib/plib/src/ssg/ssg.cxx,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -d -r1.53 -r1.54
--- ssg.cxx 10 Jun 2002 14:15:13 -0000 1.53
+++ ssg.cxx 10 Jun 2002 20:58:03 -0000 1.54
@@ -64,8 +64,8 @@
sgVec2 _ssgTexCoord00 = { 0.0f, 0.0f } ;
short _ssgIndex0 = 0;
-ssgLight _ssgLights [ 8 ] ;
-int _ssgFrameCounter = 0 ;
+static ssgLight _ssgLights [ 8 ] ;
+static int _ssgFrameCounter = 0 ;
int ssgGetFrameCounter () { return _ssgFrameCounter ; }
void ssgSetFrameCounter ( int fc ) { _ssgFrameCounter = fc ; }
Index: ssgParser.cxx
===================================================================
RCS file: /cvsroot/plib/plib/src/ssg/ssgParser.cxx,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- ssgParser.cxx 18 Dec 2001 16:35:59 -0000 1.24
+++ ssgParser.cxx 10 Jun 2002 20:58:03 -0000 1.25
@@ -270,7 +270,7 @@
onechartokenbuf_ptr += 2; // prepare for nect onechartoken
}
-char *mystrchr( const char *string, int c )
+static char *mystrchr( const char *string, int c )
// like strchr, but string may be NULL
{
if (string == NULL )
|