aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/mads/assets.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mads/assets.cpp b/engines/mads/assets.cpp
index 47b2763e44..582b80dd8a 100644
--- a/engines/mads/assets.cpp
+++ b/engines/mads/assets.cpp
@@ -32,7 +32,7 @@ namespace MADS {
SpriteAsset::SpriteAsset(MADSEngine *vm, const Common::String &resourceName, int flags) :
_vm(vm) {
Common::String resName = resourceName;
- if (!resName.hasSuffix(".SS"))
+ if (!resName.hasSuffix(".SS") && !resName.hasSuffix(".ss"))
resName += ".SS";
File file(resName);