mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-06 14:27:16 +00:00
(svn r2190) - Fix: [1179424] '.. (Parent directory)' does not show up in the root-directory anymore; win32 only (mgasterix)
This commit is contained in:
parent
02f5818912
commit
860242b811
3
win32.c
3
win32.c
@ -1815,12 +1815,13 @@ char *FiosBrowseTo(const FiosItem *item)
|
||||
case FIOS_TYPE_PARENT:
|
||||
s = strrchr(path, '\\');
|
||||
if (s != NULL) *s = '\0';
|
||||
if (path[2] == '\0' ) strcat(path, "\\");
|
||||
break;
|
||||
|
||||
case FIOS_TYPE_DIR:
|
||||
s = strchr(item->name, '\\');
|
||||
if (s != NULL) *s = '\0';
|
||||
if (path[3]!= '\0' ) strcat(path, "\\");
|
||||
if (path[3] != '\0' ) strcat(path, "\\");
|
||||
strcat(path, item->name);
|
||||
break;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user