aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Kiewitz2010-06-19 22:14:15 +0000
committerMartin Kiewitz2010-06-19 22:14:15 +0000
commit87132bd411c760812ef2b5b65c11115d689de52b (patch)
tree373981cdf13e17cec0a6614a9cce4c6df0ec5c17
parentb0a36849daaf02ba01e2a0603569b20a608250e0 (diff)
downloadscummvm-rg350-87132bd411c760812ef2b5b65c11115d689de52b.tar.gz
scummvm-rg350-87132bd411c760812ef2b5b65c11115d689de52b.tar.bz2
scummvm-rg350-87132bd411c760812ef2b5b65c11115d689de52b.zip
SCI: changing error to warning in ResMan::detectViewType()
svn-id: r50067
-rw-r--r--engines/sci/resource.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/sci/resource.cpp b/engines/sci/resource.cpp
index a4eff573ab..745cad7029 100644
--- a/engines/sci/resource.cpp
+++ b/engines/sci/resource.cpp
@@ -1756,7 +1756,8 @@ ViewType ResourceManager::detectViewType() {
}
}
- error("resMan: Couldn't find any views");
+ // this may happen if there are serious system issues (or trying to add a broken game)
+ warning("resMan: Couldn't find any views");
return kViewUnknown;
}