diff options
author | Ruediger Hanke | 2002-12-27 11:30:26 +0000 |
---|---|---|
committer | Ruediger Hanke | 2002-12-27 11:30:26 +0000 |
commit | 56b6b10301f56a06d0e5d84df5a952b7581f06dc (patch) | |
tree | 25473f74331c588566fe55ff6b90e7772e34e969 /scumm | |
parent | 7a570233215008232c872b3dc0d5f696979d1fe3 (diff) | |
download | scummvm-rg350-56b6b10301f56a06d0e5d84df5a952b7581f06dc.tar.gz scummvm-rg350-56b6b10301f56a06d0e5d84df5a952b7581f06dc.tar.bz2 scummvm-rg350-56b6b10301f56a06d0e5d84df5a952b7581f06dc.zip |
Appending another slash breaks COMI on MorphOS and AmigaOS where a double-slash means parent directory ... a slash is already appended by the game detector if required
svn-id: r6192
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/scumm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/scumm.h b/scumm/scumm.h index 920af87abe..235131aa24 100644 --- a/scumm/scumm.h +++ b/scumm/scumm.h @@ -287,7 +287,7 @@ public: if (_gameDataPath[0] == '\0') return "resource"; - sprintf(resourcePath, "%s/resource", _gameDataPath); + sprintf(resourcePath, "%sresource", _gameDataPath); return resourcePath; } return _gameDataPath; |