[Scummvm-cvs-logs] CVS: scummvm/common file.cpp,1.25,1.26
Joost Peters
joostp at users.sourceforge.net
Thu Apr 10 06:45:15 CEST 2003
Update of /cvsroot/scummvm/scummvm/common
In directory sc8-pr-cvs1:/tmp/cvs-serv18842/common
Modified Files:
file.cpp
Log Message:
fixed GP32 port
Index: file.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/common/file.cpp,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- file.cpp 6 Mar 2003 21:45:19 -0000 1.25
+++ file.cpp 10 Apr 2003 13:44:50 -0000 1.26
@@ -32,7 +32,10 @@
#ifdef __MORPHOS__
if (buf[strlen(buf)-1] != ':' && buf[strlen(buf)-1] != '/')
#endif
- strcat(buf, "/");
+
+#ifndef __GP32__
+ strcat(buf, "/");
+#endif
}
strcat(buf, filename);
More information about the Scummvm-git-logs
mailing list