(svn r2153) - Fix: [ 1173690 ] Path displaying as "C:\\" in saveload window win32-only (glx)

replace/41b28d7194a279bdc17475d4fbe2ea6ec885a466
darkvater 20 years ago
parent 22d36985cd
commit dfe6c34bf1

@ -1820,7 +1820,7 @@ char *FiosBrowseTo(const FiosItem *item)
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;

Loading…
Cancel
Save