diff options
-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; |