| 198 | } |
| 199 | |
| 200 | VOID FinishExternalScreen(VOID) |
| 201 | { |
| 202 | // make sure we clean up later |
| 203 | GraphicsScreenDirty = TRUE; |
| 204 | |
| 205 | if (haveError) { |
| 206 | // leave error messages on screen in case of error, |
| 207 | // wait for a key press, and then switch |
| 208 | PauseForKey(L"was error, press any key\n"); |
| 209 | SwitchToText(FALSE); |
| 210 | } |
| 211 | |
| 212 | // reset error flag |
| 213 | haveError = FALSE; |
| 214 | } |
| 215 | |
| 216 | VOID TerminateScreen(VOID) |
| 217 | { |
no test coverage detected