[Scummvm-cvs-logs] SF.net SVN: scummvm:[38629] scummvm/trunk/engines/sci/scicore/vocab.cpp

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Fri Feb 20 23:17:14 CET 2009


Revision: 38629
          http://scummvm.svn.sourceforge.net/scummvm/?rev=38629&view=rev
Author:   thebluegr
Date:     2009-02-20 22:17:14 +0000 (Fri, 20 Feb 2009)

Log Message:
-----------
Changed some non-fatal messages back to warnings

Modified Paths:
--------------
    scummvm/trunk/engines/sci/scicore/vocab.cpp

Modified: scummvm/trunk/engines/sci/scicore/vocab.cpp
===================================================================
--- scummvm/trunk/engines/sci/scicore/vocab.cpp	2009-02-20 22:12:48 UTC (rev 38628)
+++ scummvm/trunk/engines/sci/scicore/vocab.cpp	2009-02-20 22:17:14 UTC (rev 38629)
@@ -82,14 +82,14 @@
 	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 @@
 				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;
 			}


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list