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
This commit is contained in:
Ruediger Hanke 2002-12-27 11:30:26 +00:00
parent 7a57023321
commit 56b6b10301

View File

@ -287,7 +287,7 @@ public:
if (_gameDataPath[0] == '\0')
return "resource";
sprintf(resourcePath, "%s/resource", _gameDataPath);
sprintf(resourcePath, "%sresource", _gameDataPath);
return resourcePath;
}
return _gameDataPath;