| 369 | |
| 370 | |
| 371 | static void MenuOptionsScreen_IntGet(struct ButtonWidget* btn, cc_string* v) { |
| 372 | struct MenuOptionMetaInt* meta = (struct MenuOptionMetaInt*)btn->meta.ptr; |
| 373 | String_AppendInt(v, meta->GetValue()); |
| 374 | } |
| 375 | |
| 376 | static void MenuOptionsScreen_IntSet(struct ButtonWidget* btn, const cc_string* v) { |
| 377 | struct MenuOptionMetaInt* meta = (struct MenuOptionMetaInt*)btn->meta.ptr; |
nothing calls this directly
no test coverage detected