(svn r2153) - Fix: [ 1173690 ] Path displaying as "C:\\" in saveload window win32-only (glx)
authordarkvater
Tue, 05 Apr 2005 21:09:36 +0000
changeset 1649 f4f5fabe0506
parent 1648 41c3d5de9994
child 1650 4a5141e10b72
(svn r2153) - Fix: [ 1173690 ] Path displaying as "C:\\" in saveload window win32-only (glx)
win32.c
--- a/win32.c	Tue Apr 05 21:03:30 2005 +0000
+++ b/win32.c	Tue Apr 05 21:09:36 2005 +0000
@@ -1820,7 +1820,7 @@
 		case FIOS_TYPE_DIR:
 			s = strchr(item->name, '\\');
 			if (s != NULL) *s = '\0';
-			strcat(path, "\\");
+			if (path[3]!= '\0' ) strcat(path, "\\");
 			strcat(path, item->name);
 			break;