diff options
author | Darkvater <Darkvater@openttd.org> | 2005-10-28 00:18:57 +0000 |
---|---|---|
committer | Darkvater <Darkvater@openttd.org> | 2005-10-28 00:18:57 +0000 |
commit | 4cc9761cb5d7dd6e4b9b4e9676f856a6357e7dbc (patch) | |
tree | d7615fc0bd640a584b37ec7040d91cb7e73dc823 | |
parent | 71fb375f8cf82522650d3ec7599b098de3fbd2ce (diff) | |
download | openttd-4cc9761cb5d7dd6e4b9b4e9676f856a6357e7dbc.tar.xz |
(svn r3097) - Fix (regression): unix has a trailing slash after the paths, windows does not, no idea why os2 has. Way to go consistency :s. So anyways, just strip trailing slash
-rw-r--r-- | os2.c | 2 | ||||
-rw-r--r-- | unix.c | 4 | ||||
-rw-r--r-- | win32.c | 3 |
3 files changed, 8 insertions, 1 deletions
@@ -356,6 +356,8 @@ char *FiosBrowseTo(const FiosItem *item) case FIOS_TYPE_DIRECT: sprintf(path, "%s\\", item->name); + s = strrchr(path, '\\'); + if (s[1] == '\0') s[0] = '\0'; // strip trailing slash break; case FIOS_TYPE_FILE: @@ -312,7 +312,9 @@ char *FiosBrowseTo(const FiosItem *item) break; case FIOS_TYPE_DIRECT: - sprintf(path, "%s\\", item->name); + sprintf(path, "%s/", item->name); + s = strrchr(path, '/'); + if (s[1] == '\0') s[0] = '\0'; // strip trailing slash break; case FIOS_TYPE_FILE: @@ -919,6 +919,9 @@ char *FiosBrowseTo(const FiosItem *item) case FIOS_TYPE_DIRECT: sprintf(path, "%s\\", item->name); + s = strrchr(path, '\\'); + if (s[1] == '\0') s[0] = '\0'; // strip trailing slash + break; case FIOS_TYPE_FILE: |