mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-10 20:01:25 +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)
|
if (id.getType() == kResourceTypeInvalid)
|
||||||
warning("[resMan] Attempt to unlock resource %i of invalid type %i", id.getNumber(), type);
|
warning("[resMan] Attempt to unlock resource %i of invalid type %i", id.getNumber(), type);
|
||||||
else
|
else
|
||||||
// Happens in CD games (e.g. LSL6CD) with the message resource
|
// Happens in CD games (e.g. LSL6CD) with the message
|
||||||
warning("[resMan] Attempt to unlock non-existant resource %s", id.toString().c_str());
|
// 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;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user