mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-23 02:11:38 +00:00
SCI: Changed a warning into debug output
svn-id: r51409
This commit is contained in:
parent
817170bbb6
commit
bae197c489
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user