diff options
| author | Max Horn | 2004-08-29 00:15:36 +0000 | 
|---|---|---|
| committer | Max Horn | 2004-08-29 00:15:36 +0000 | 
| commit | c7490614051aa85b079c8bbda77681e5d66a7f2e (patch) | |
| tree | 6a0bc72eac07f3f8fbfbe3146ef9c105fab13df2 | |
| parent | 8198af44a212bddcce1352548a8f5624bcc94344 (diff) | |
| download | scummvm-rg350-c7490614051aa85b079c8bbda77681e5d66a7f2e.tar.gz scummvm-rg350-c7490614051aa85b079c8bbda77681e5d66a7f2e.tar.bz2 scummvm-rg350-c7490614051aa85b079c8bbda77681e5d66a7f2e.zip  | |
Reduced warning to the case which actually might be broken...
svn-id: r14821
| -rw-r--r-- | scumm/charset.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/scumm/charset.cpp b/scumm/charset.cpp index 110f769cbc..6fb14c0f61 100644 --- a/scumm/charset.cpp +++ b/scumm/charset.cpp @@ -1128,7 +1128,8 @@ void CharsetRendererClassic::printChar(int chr) {  		// once to each of the two buffers. That should hypothetically yield  		// identical results, though I didn't try it and right now I don't know  		// any spots where I can test this... -		warning("This is broken?!"); +		if (!_ignoreCharsetMask) +			warning("This might be broken -- please report where you encountered this to Fingolfin");  		int h = height;  		do {  			memcpy(back, dst, width);  | 
