| 162 | //========================================================================== |
| 163 | |
| 164 | void FHereticStartScreen::AppendStatusLine(const char* status) |
| 165 | { |
| 166 | int x; |
| 167 | |
| 168 | for (x = 0; status[x] != '\0'; ++x) |
| 169 | { |
| 170 | DrawChar(StartupBitmap, SMsgX + x, 24, status[x], 0x1f); |
| 171 | } |
| 172 | SMsgX += x; |
| 173 | StartupTexture->CleanHardwareData(true); |
| 174 | Render(); |
| 175 | } |
| 176 | |
| 177 | |
| 178 | FStartScreen* CreateHereticStartScreen(int max_progress) |
nothing calls this directly
no test coverage detected