1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-25 07:44:38 +01:00

Remove uint32_t overloads in Paint functions

This commit is contained in:
Gymnasiast
2022-09-29 00:00:49 +02:00
parent cedccf9b0e
commit a69a8fa7e8
21 changed files with 140 additions and 178 deletions

View File

@@ -376,6 +376,6 @@ void Duck::Paint(paint_session& session, int32_t imageDirection) const
uint32_t imageId = GetFrameImage(imageDirection);
if (imageId != 0)
{
PaintAddImageAsParent(session, imageId, { 0, 0, z }, { 1, 1, 0 });
PaintAddImageAsParent(session, ImageId(imageId), { 0, 0, z }, { 1, 1, 0 });
}
}