diff options
| -rw-r--r-- | engines/sci/engine/kscripts.cpp | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/engines/sci/engine/kscripts.cpp b/engines/sci/engine/kscripts.cpp index 0286f7454a..e211867ef9 100644 --- a/engines/sci/engine/kscripts.cpp +++ b/engines/sci/engine/kscripts.cpp @@ -104,8 +104,10 @@ reg_t kLock(EngineState *s, int argc, reg_t *argv) {  				if (id.getType() == kResourceTypeInvalid)  					warning("[resMan] Attempt to unlock resource %i of invalid type %i", id.getNumber(), type);  				else -					// Happens in CD games (e.g. LSL6CD) with the message resource -					warning("[resMan] Attempt to unlock non-existant resource %s", id.toString().c_str()); +					// Happens in CD games (e.g. LSL6CD) with the message +					// resource. It isn't fatal, and it's usually caused +					// by leftover scripts. +					debugC(2, kDebugLevelResMan, "[resMan] Attempt to unlock non-existant resource %s", id.toString().c_str());  			}  		}  		break; | 
