| 10170 | } |
| 10171 | |
| 10172 | void cFodder::Service_Mission_Text_Prepare() { |
| 10173 | std::stringstream Mission; |
| 10174 | Mission << "MISSION "; |
| 10175 | |
| 10176 | Mission << tool_StripLeadingZero(std::to_string(mGame_Data.mMission_Number)); |
| 10177 | |
| 10178 | String_CalculateWidth(320, mFont_Service_Width, Mission.str().c_str()); |
| 10179 | |
| 10180 | Service_Draw_String(Mission.str(), mFont_Service_Width, 4, mGUI_Temp_X, mVideo_Draw_PosY); |
| 10181 | } |
| 10182 | |
| 10183 | void cFodder::Briefing_Draw_Phase() { |
| 10184 | const char* Str_Brief = "BRIEFING"; |
nothing calls this directly
no test coverage detected