| 167 | } |
| 168 | |
| 169 | bool con_Input(char *buf, int buflen) { |
| 170 | if (!Con_init) { // the console hasn't been initialized yet |
| 171 | *buf = '\0'; |
| 172 | return false; |
| 173 | } |
| 174 | return commands[Console_mode].con_Input(buf, buflen); |
| 175 | } |
| 176 | |
| 177 | void con_Defer() { |
| 178 | if (!Con_init) { |
no outgoing calls
no test coverage detected