From 984ce55aa44b89a8d5e9d8faf2b929c0fe1a4a0d Mon Sep 17 00:00:00 2001 From: James Brown Date: Fri, 16 Jan 2004 08:34:42 +0000 Subject: Just hide a few noisy warnings. svn-id: r12426 --- scumm/string.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'scumm/string.cpp') diff --git a/scumm/string.cpp b/scumm/string.cpp index 12116a02bd..56a67d787b 100644 --- a/scumm/string.cpp +++ b/scumm/string.cpp @@ -453,7 +453,10 @@ void ScummEngine::drawString(int a) { // Note #2: If triggered "accidentaly", this code could also // cause code to be left printed when it shouldn't... if (_string[a].no_talk_anim == false) { -warning("Would have set _charset->_blitAlso = true (wanted to print '%c' = %d)", c, c); + // Sam and Max seems to blitAlso 32 a lot, which does + // nothing anyway. So just hide that one for brevity. + if (c != '32') + warning("Would have set _charset->_blitAlso = true (wanted to print '%c' = %d)", c, c); // _charset->_blitAlso = true; } } -- cgit v1.2.3