=============== Menu_PostParse =============== */
| 5709 | =============== |
| 5710 | */ |
| 5711 | void Menu_PostParse(menuDef_t *menu) |
| 5712 | { |
| 5713 | if (menu == NULL) |
| 5714 | { |
| 5715 | return; |
| 5716 | } |
| 5717 | |
| 5718 | if (menu->fullScreen) |
| 5719 | { |
| 5720 | menu->window.rect.x = 0; |
| 5721 | menu->window.rect.y = 0; |
| 5722 | menu->window.rect.w = 640; |
| 5723 | menu->window.rect.h = 480; |
| 5724 | } |
| 5725 | Menu_UpdatePosition(menu); |
| 5726 | } |
| 5727 | |
| 5728 | /* |
| 5729 | =============== |
no test coverage detected