mirror of
https://github.com/libretro/scummvm.git
synced 2024-11-30 12:50:51 +00:00
GRAPHICS: Fix warnings about mismatching format arguments.
This commit is contained in:
parent
81e1d0963f
commit
a2a5d42a58
@ -588,7 +588,7 @@ blendPixelPtr(PixelType *ptr, PixelType color, uint8 alpha) {
|
||||
(int)(idst & _blueMask)) * alpha) >> 8))) |
|
||||
(idst & _alphaMask));
|
||||
} else {
|
||||
error("Unsupported BPP format: %d", sizeof(PixelType));
|
||||
error("Unsupported BPP format: %u", (uint)sizeof(PixelType));
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user