summaryrefslogtreecommitdiff
path: root/unix.c
diff options
context:
space:
mode:
authorDarkvater <darkvater@openttd.org>2005-10-28 00:18:57 +0000
committerDarkvater <darkvater@openttd.org>2005-10-28 00:18:57 +0000
commit9bbf8ea9d056900500aa6f534091883ff2de6df0 (patch)
treed7615fc0bd640a584b37ec7040d91cb7e73dc823 /unix.c
parentf56199311284fe48c88d4a55a1794c1f485b151e (diff)
downloadopenttd-9bbf8ea9d056900500aa6f534091883ff2de6df0.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
Diffstat (limited to 'unix.c')
-rw-r--r--unix.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/unix.c b/unix.c
index c9dcee80b..fd20e3715 100644
--- a/unix.c
+++ b/unix.c
@@ -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: