| 141 | //========================================================================== |
| 142 | |
| 143 | void FHereticStartScreen::LoadingStatus(const char* message, int colors) |
| 144 | { |
| 145 | int x; |
| 146 | |
| 147 | for (x = 0; message[x] != '\0'; ++x) |
| 148 | { |
| 149 | DrawChar(StartupBitmap, 17 + x, HMsgY, message[x], colors); |
| 150 | } |
| 151 | HMsgY++; |
| 152 | StartupTexture->CleanHardwareData(true); |
| 153 | Render(); |
| 154 | } |
| 155 | |
| 156 | //========================================================================== |
| 157 | // |
nothing calls this directly
no test coverage detected