1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-16 03:23:15 +01:00

fix ride type sorting and add water preview

This commit is contained in:
Ted John
2016-07-02 10:59:50 +01:00
parent 72f7f0f329
commit 13a560fb1d
6 changed files with 62 additions and 17 deletions

View File

@@ -812,4 +812,10 @@ extern "C"
return "";
}
}
void object_draw_preview(const void * object, rct_drawpixelinfo * dpi)
{
const Object * baseObject = (const Object *)object;
baseObject->DrawPreview(dpi);
}
}