| 480 | } |
| 481 | |
| 482 | static void MenuOptionsScreen_Layout(void* screen) { |
| 483 | struct MenuOptionsScreen* s = (struct MenuOptionsScreen*)screen; |
| 484 | Screen_Layout(s); |
| 485 | Menu_LayoutBack(&s->done); |
| 486 | MenuOptionsScreen_LayoutExtHelp(s); |
| 487 | } |
| 488 | |
| 489 | static void MenuOptionsScreen_ContextLost(void* screen) { |
| 490 | struct MenuOptionsScreen* s = (struct MenuOptionsScreen*)screen; |
nothing calls this directly
no test coverage detected