| 151 | } |
| 152 | |
| 153 | static void MenuOptionsScreen_LayoutExtHelp(struct MenuOptionsScreen* s) { |
| 154 | Widget_SetLocation(&s->extHelp, ANCHOR_MIN, ANCHOR_CENTRE_MIN, 0, 100); |
| 155 | /* If use centre align above, then each line in extended help gets */ |
| 156 | /* centered aligned separately - which is not the desired behaviour. */ |
| 157 | s->extHelp.xOffset = Window_UI.Width / 2 - s->extHelp.width / 2; |
| 158 | Widget_Layout(&s->extHelp); |
| 159 | } |
| 160 | |
| 161 | static cc_string MenuOptionsScreen_GetDesc(int i) { |
| 162 | const char* desc = MenuOptionsScreen_Instance.extHelpDesc; |
no test coverage detected