improve warning message to include the values that don't match
This commit is contained in:
parent
e5ceed31cc
commit
8bd876d8c8
|
@ -1520,7 +1520,8 @@ void Image::Overlay( const Image &image ) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( colours == image.colours && subpixelorder != image.subpixelorder ) {
|
if ( colours == image.colours && subpixelorder != image.subpixelorder ) {
|
||||||
Warning("Attempt to overlay images of same format but with different subpixel order.");
|
Warning("Attempt to overlay images of same format but with different subpixel order %d != %d.",
|
||||||
|
subpixelorder, image.subpixelorder);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Grayscale ontop of grayscale - complete */
|
/* Grayscale ontop of grayscale - complete */
|
||||||
|
|
Loading…
Reference in New Issue