| 124 | } |
| 125 | |
| 126 | VOID SetupScreen(VOID) |
| 127 | { |
| 128 | if (GlobalConfig.TextOnly) { |
| 129 | // switch to text mode if requested |
| 130 | AllowGraphicsMode = FALSE; |
| 131 | SwitchToText(FALSE); |
| 132 | } else if (AllowGraphicsMode) { |
| 133 | // clear screen and show banner |
| 134 | // (now we know we'll stay in graphics mode) |
| 135 | SwitchToGraphics(); |
| 136 | //BltClearScreen(TRUE); |
| 137 | } |
| 138 | } |
| 139 | |
| 140 | static VOID SwitchToText(IN BOOLEAN CursorEnabled) |
| 141 | { |
no test coverage detected