aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorFilippos Karapetis2009-02-20 22:17:14 +0000
committerFilippos Karapetis2009-02-20 22:17:14 +0000
commit637fa528f60e0995368199c69ba5b0b75fdbbad6 (patch)
treea252e1e9a5f9257998228e59db6b35808a5204ea /engines
parent77542e8623372645eac417328645644676b894f1 (diff)
downloadscummvm-rg350-637fa528f60e0995368199c69ba5b0b75fdbbad6.tar.gz
scummvm-rg350-637fa528f60e0995368199c69ba5b0b75fdbbad6.tar.bz2
scummvm-rg350-637fa528f60e0995368199c69ba5b0b75fdbbad6.zip
Changed some non-fatal messages back to warnings
svn-id: r38629
Diffstat (limited to 'engines')
-rw-r--r--engines/sci/scicore/vocab.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/sci/scicore/vocab.cpp b/engines/sci/scicore/vocab.cpp
index c962b0c4c7..c76ddc1e68 100644
--- a/engines/sci/scicore/vocab.cpp
+++ b/engines/sci/scicore/vocab.cpp
@@ -82,14 +82,14 @@ vocab_get_words(ResourceManager *resmgr, int *word_counter) {
vocab_version = 0;
if (!resource) {
- error("SCI0: Could not find a main vocabulary, trying SCI01.\n");
+ warning("SCI0: Could not find a main vocabulary, trying SCI01.\n");
resource = scir_find_resource(resmgr, sci_vocab,
VOCAB_RESOURCE_SCI1_MAIN_VOCAB, 0);
vocab_version = 1;
}
if (!resource) {
- error("SCI1: Could not find a main vocabulary");
+ warning("SCI1: Could not find a main vocabulary");
return NULL; /* NOT critical: SCI1 games and some demos don't have one! */
}
@@ -122,7 +122,7 @@ vocab_get_words(ResourceManager *resmgr, int *word_counter) {
currentword[currentwordpos++] = c;
}
if (seeker == resource->size) {
- error("SCI1: Vocabulary not usable, disabling.\n");
+ warning("SCI1: Vocabulary not usable, disabling.\n");
vocab_free_words(words, counter);
return NULL;
}