diff options
author | Martin Kiewitz | 2010-06-19 22:14:15 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-06-19 22:14:15 +0000 |
commit | 87132bd411c760812ef2b5b65c11115d689de52b (patch) | |
tree | 373981cdf13e17cec0a6614a9cce4c6df0ec5c17 /engines/sci | |
parent | b0a36849daaf02ba01e2a0603569b20a608250e0 (diff) | |
download | scummvm-rg350-87132bd411c760812ef2b5b65c11115d689de52b.tar.gz scummvm-rg350-87132bd411c760812ef2b5b65c11115d689de52b.tar.bz2 scummvm-rg350-87132bd411c760812ef2b5b65c11115d689de52b.zip |
SCI: changing error to warning in ResMan::detectViewType()
svn-id: r50067
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/resource.cpp | 3 |
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; } |