diff options
| -rw-r--r-- | engines/lastexpress/data/animation.cpp | 2 | ||||
| -rw-r--r-- | engines/lastexpress/game/action.cpp | 10 | 
2 files changed, 6 insertions, 6 deletions
| diff --git a/engines/lastexpress/data/animation.cpp b/engines/lastexpress/data/animation.cpp index 12968520bb..ce42acb8fe 100644 --- a/engines/lastexpress/data/animation.cpp +++ b/engines/lastexpress/data/animation.cpp @@ -248,7 +248,7 @@ void Animation::processChunkAudio(Common::SeekableReadStream *in, const Chunk &c  		// Read Snd header  		uint32 header1 = in->readUint32LE();  		uint16 header2 = in->readUint16LE(); -		warning("Start ADPCM: %d, %d", header1, header2); +		debugC(4, kLastExpressDebugSound, "Start ADPCM: %d, %d", header1, header2);  		size -= 6;  	} diff --git a/engines/lastexpress/game/action.cpp b/engines/lastexpress/game/action.cpp index 0ce75f16a4..1e5bc0ffd7 100644 --- a/engines/lastexpress/game/action.cpp +++ b/engines/lastexpress/game/action.cpp @@ -1739,14 +1739,14 @@ CursorStyle Action::getCursor(const SceneHotspot &hotspot) const {  			return kCursorBackward;  	case SceneHotspot::kActionKnockOnDoor: -		warning("================================= DOOR %03d =================================", object); +		debugC(2, kLastExpressDebugScenes, "================================= DOOR %03d =================================", object);  		if (object >= kObjectMax)  			return kCursorNormal;  		else  			return (CursorStyle)getObjects()->get(object).cursor;  	case SceneHotspot::kAction12: -		warning("================================= OBJECT %03d =================================", object); +		debugC(2, kLastExpressDebugScenes, "================================= OBJECT %03d =================================", object);  		if (object >= kObjectMax)  			return kCursorNormal; @@ -1756,7 +1756,7 @@ CursorStyle Action::getCursor(const SceneHotspot &hotspot) const {  			return kCursorNormal;  	case SceneHotspot::kActionPickItem: -		warning("================================= ITEM %03d =================================", object); +		debugC(2, kLastExpressDebugScenes, "================================= ITEM %03d =================================", object);  		if (object >= kObjectCompartmentA)  			return kCursorNormal; @@ -1767,7 +1767,7 @@ CursorStyle Action::getCursor(const SceneHotspot &hotspot) const {  			return kCursorNormal;  	case SceneHotspot::kActionDropItem: -		warning("================================= ITEM %03d =================================", object); +		debugC(2, kLastExpressDebugScenes, "================================= ITEM %03d =================================", object);  		if (object >= kObjectCompartmentA)  			return kCursorNormal; @@ -1884,7 +1884,7 @@ LABEL_KEY:  	// Handle compartment action  	case SceneHotspot::kActionCompartment:  	case SceneHotspot::kActionExitCompartment: -		warning("================================= DOOR %03d =================================", object); +		debugC(2, kLastExpressDebugScenes, "================================= DOOR %03d =================================", object);  		if (object >= kObjectMax)  			return kCursorNormal; | 
