Update of /cvsroot/super-tux/supertux/lib/video
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9915/lib/video
Modified Files:
font.cpp
Log Message:
- fix pointed out by Matt Mets
Index: font.cpp
===================================================================
RCS file: /cvsroot/super-tux/supertux/lib/video/font.cpp,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- font.cpp 9 Oct 2004 07:04:04 -0000 1.10
+++ font.cpp 12 Oct 2004 06:27:13 -0000 1.11
@@ -217,7 +217,7 @@
// Split text string lines into a vector
names.clear();
- unsigned int i, l;
+ std::string::size_type i, l;
i = 0;
while(true)
{
|