aboutsummaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorMax Horn2011-05-02 13:40:13 +0200
committerMax Horn2011-05-02 13:40:25 +0200
commita48b705c542eaab55b9b5ac5e3ea256b94d2a246 (patch)
treed706fda2a0bff6ae080d4a79b3c2db190373c2dd /graphics
parentd521d6a1c2ac78f2f47c5e6c97b95019faab65ec (diff)
downloadscummvm-rg350-a48b705c542eaab55b9b5ac5e3ea256b94d2a246.tar.gz
scummvm-rg350-a48b705c542eaab55b9b5ac5e3ea256b94d2a246.tar.bz2
scummvm-rg350-a48b705c542eaab55b9b5ac5e3ea256b94d2a246.zip
GRAPHICS: Turn printf into warning
Diffstat (limited to 'graphics')
-rw-r--r--graphics/jpeg.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/jpeg.cpp b/graphics/jpeg.cpp
index f1dcd4ac0c..70ffb06f6b 100644
--- a/graphics/jpeg.cpp
+++ b/graphics/jpeg.cpp
@@ -711,9 +711,9 @@ uint8 JPEG::readBit() {
if (byte2 == 0xDC) {
// DNL marker: Define Number of Lines
// TODO: terminate scan
- printf("DNL marker detected: terminate scan\n");
+ warning("DNL marker detected: terminate scan");
} else {
- printf("Error: marker 0x%02X read in entropy data\n", byte2);
+ warning("Error: marker 0x%02X read in entropy data", byte2);
}
}
}