| 335 | } |
| 336 | |
| 337 | void recompui_set_padding_bottom(uint8_t* rdram, recomp_context* ctx) { |
| 338 | Style* resource = arg_style<0>(rdram, ctx); |
| 339 | float padding = _arg_float_a1(rdram, ctx); |
| 340 | uint32_t unit = _arg<2, uint32_t>(rdram, ctx); |
| 341 | |
| 342 | resource->set_padding_bottom(padding, static_cast<Unit>(unit)); |
| 343 | } |
| 344 | |
| 345 | // Margins |
| 346 | void recompui_set_margin(uint8_t* rdram, recomp_context* ctx) { |
nothing calls this directly
no test coverage detected