mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-02-02 11:45:13 +01:00
Remove rotation argument from sub_98199C
This commit is contained in:
committed by
Michał Janiszewski
parent
5795810a85
commit
acccd0a2c8
@@ -1022,17 +1022,20 @@ paint_struct * sub_98198C(
|
||||
* @param bound_box_offset_x (0x009DEA52)
|
||||
* @param bound_box_offset_y (0x009DEA54)
|
||||
* @param bound_box_offset_z (0x009DEA56)
|
||||
* @param rotation (ebp)
|
||||
* @return (ebp) paint_struct on success (CF == 0), nullptr on failure (CF == 1)
|
||||
*/
|
||||
paint_struct * sub_98199C(
|
||||
paint_session * session,
|
||||
uint32 image_id,
|
||||
sint8 x_offset, sint8 y_offset,
|
||||
sint16 bound_box_length_x, sint16 bound_box_length_y, sint8 bound_box_length_z,
|
||||
sint16 z_offset,
|
||||
sint16 bound_box_offset_x, sint16 bound_box_offset_y, sint16 bound_box_offset_z,
|
||||
uint32 rotation)
|
||||
paint_session * session,
|
||||
uint32 image_id,
|
||||
sint8 x_offset,
|
||||
sint8 y_offset,
|
||||
sint16 bound_box_length_x,
|
||||
sint16 bound_box_length_y,
|
||||
sint8 bound_box_length_z,
|
||||
sint16 z_offset,
|
||||
sint16 bound_box_offset_x,
|
||||
sint16 bound_box_offset_y,
|
||||
sint16 bound_box_offset_z)
|
||||
{
|
||||
assert((uint16)bound_box_length_x == (sint16)bound_box_length_x);
|
||||
assert((uint16)bound_box_length_y == (sint16)bound_box_length_y);
|
||||
|
||||
Reference in New Issue
Block a user