GRAPHICS: Turn printf into warning
This commit is contained in:
parent
d521d6a1c2
commit
a48b705c54
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue