| 423 | } |
| 424 | |
| 425 | void recompui_set_border_left_width(uint8_t* rdram, recomp_context* ctx) { |
| 426 | Style* resource = arg_style<0>(rdram, ctx); |
| 427 | float width = _arg_float_a1(rdram, ctx); |
| 428 | uint32_t unit = _arg<2, uint32_t>(rdram, ctx); |
| 429 | |
| 430 | resource->set_border_left_width(width, static_cast<Unit>(unit)); |
| 431 | } |
| 432 | |
| 433 | void recompui_set_border_top_width(uint8_t* rdram, recomp_context* ctx) { |
| 434 | Style* resource = arg_style<0>(rdram, ctx); |
nothing calls this directly
no test coverage detected