mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-18 12:33:17 +01:00
fix drawing of object preview
We can't use dpi->width and dpi->height as they only define the clip region, not the viewport
This commit is contained in:
@@ -58,11 +58,11 @@ void StexObject::Unload()
|
||||
_legacyType.details = 0;
|
||||
}
|
||||
|
||||
void StexObject::DrawPreview(rct_drawpixelinfo * dpi) const
|
||||
void StexObject::DrawPreview(rct_drawpixelinfo * dpi, sint32 width, sint32 height) const
|
||||
{
|
||||
// Write (no image)
|
||||
int x = dpi->width / 2;
|
||||
int y = dpi->height / 2;
|
||||
sint32 x = width / 2;
|
||||
sint32 y = height / 2;
|
||||
gfx_draw_string_centred(dpi, 3326, x, y, 0, nullptr);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user