| 250 | } |
| 251 | |
| 252 | void recompui_set_width_auto(uint8_t* rdram, recomp_context* ctx) { |
| 253 | Style* resource = arg_style<0>(rdram, ctx); |
| 254 | |
| 255 | resource->set_width_auto(); |
| 256 | } |
| 257 | |
| 258 | void recompui_set_height(uint8_t* rdram, recomp_context* ctx) { |
| 259 | Style* resource = arg_style<0>(rdram, ctx); |
nothing calls this directly
no test coverage detected