[quake3-commits] r2166 - trunk/code/qcommon
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Sun Sep 18 14:07:58 EDT 2011
Author: ztm
Date: 2011-09-18 14:07:57 -0400 (Sun, 18 Sep 2011)
New Revision: 2166
Modified:
trunk/code/qcommon/files.c
Log:
Use platform's path separator in FS_Path_f (for consistent output on Windows), reported by Ensiform.
Modified: trunk/code/qcommon/files.c
===================================================================
--- trunk/code/qcommon/files.c 2011-09-12 20:14:36 UTC (rev 2165)
+++ trunk/code/qcommon/files.c 2011-09-18 18:07:57 UTC (rev 2166)
@@ -2709,7 +2709,7 @@
}
}
} else {
- Com_Printf ("%s/%s\n", s->dir->path, s->dir->gamedir );
+ Com_Printf ("%s%c%s\n", s->dir->path, PATH_SEP, s->dir->gamedir );
}
}
More information about the quake3-commits
mailing list