aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2006-05-07 11:58:01 +0000
committerMax Horn2006-05-07 11:58:01 +0000
commit2e9bb56744954a3ccaba25037088bc0316400020 (patch)
treee3bab055f9a7920d5eb6e9c29eb89c49078f3fab
parent9a6c120b0ded4569586caf0aa8335a9365e56112 (diff)
downloadscummvm-rg350-2e9bb56744954a3ccaba25037088bc0316400020.tar.gz
scummvm-rg350-2e9bb56744954a3ccaba25037088bc0316400020.tar.bz2
scummvm-rg350-2e9bb56744954a3ccaba25037088bc0316400020.zip
Turning this warning into an error, since I never got any feedback on it
svn-id: r22376
-rw-r--r--engines/scumm/charset.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/charset.cpp b/engines/scumm/charset.cpp
index 35670d9972..44c0074760 100644
--- a/engines/scumm/charset.cpp
+++ b/engines/scumm/charset.cpp
@@ -1469,7 +1469,7 @@ void CharsetRendererClassic::printChar(int chr, bool ignoreCharsetMask) {
// identical results, though I didn't try it and right now I don't know
// any spots where I can test this...
if (!ignoreCharsetMask)
- warning("This might be broken -- please report where you encountered this to Fingolfin");
+ error("This might be broken -- please report where you encountered this to Fingolfin");
// Perform some clipping
int w = MIN(width, dstSurface.w - _left);