diff options
| author | Max Horn | 2003-05-20 15:13:18 +0000 | 
|---|---|---|
| committer | Max Horn | 2003-05-20 15:13:18 +0000 | 
| commit | 684cd9c4318dcf6b101cbe68b2b1dbecfb52c1db (patch) | |
| tree | f12ae694737149197d1e563251f5cd393252671f | |
| parent | 5fe08b91910e63450b448689ec2fc733a8b66422 (diff) | |
| download | scummvm-rg350-684cd9c4318dcf6b101cbe68b2b1dbecfb52c1db.tar.gz scummvm-rg350-684cd9c4318dcf6b101cbe68b2b1dbecfb52c1db.tar.bz2 scummvm-rg350-684cd9c4318dcf6b101cbe68b2b1dbecfb52c1db.zip | |
fixed warning output
svn-id: r7735
| -rw-r--r-- | scumm/actor.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/scumm/actor.cpp b/scumm/actor.cpp index a9f69602e1..73e1e0d28c 100644 --- a/scumm/actor.cpp +++ b/scumm/actor.cpp @@ -1457,7 +1457,7 @@ void Actor::remapActorPalette(int r_fact, int g_fact, int b_fact, int threshold)  	}  	if (costume < 1 || costume >= _vm->_numCostumes - 1) { -		warning("Remap actor %d invalid costume", number, costume); +		warning("Remap actor %d invalid costume %d", number, costume);  		return;  	} | 
