| 50 | EXTERN_CVAR(Float, vid_scalefactor) |
| 51 | |
| 52 | CCMD (menu_resolution_set_custom) |
| 53 | { |
| 54 | if (argv.argc() > 2) |
| 55 | { |
| 56 | menu_resolution_custom_width = atoi(argv[1]); |
| 57 | menu_resolution_custom_height = atoi(argv[2]); |
| 58 | } |
| 59 | else |
| 60 | { |
| 61 | Printf("This command is not meant to be used outside the menu! But if you want to use it, please specify <x> and <y>.\n"); |
| 62 | } |
| 63 | M_PreviousMenu(); |
| 64 | } |
| 65 | |
| 66 | CCMD (menu_resolution_commit_changes) |
| 67 | { |
nothing calls this directly
no test coverage detected