MCPcopy Create free account
hub / github.com/ZDoom/Raze / AppendStatusLine

Method AppendStatusLine

source/common/startscreen/startscreen_heretic.cpp:164–175  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

162//==========================================================================
163
164void 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
178FStartScreen* CreateHereticStartScreen(int max_progress)

Callers

nothing calls this directly

Calls 2

DrawCharFunction · 0.85
CleanHardwareDataMethod · 0.80

Tested by

no test coverage detected