From 684cd9c4318dcf6b101cbe68b2b1dbecfb52c1db Mon Sep 17 00:00:00 2001 From: Max Horn Date: Tue, 20 May 2003 15:13:18 +0000 Subject: [PATCH] fixed warning output svn-id: r7735 --- scumm/actor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scumm/actor.cpp b/scumm/actor.cpp index a9f69602e1b..73e1e0d28c4 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; }