From 56b6b10301f56a06d0e5d84df5a952b7581f06dc Mon Sep 17 00:00:00 2001 From: Ruediger Hanke Date: Fri, 27 Dec 2002 11:30:26 +0000 Subject: 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 --- scumm/scumm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scumm') 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; -- cgit v1.2.3