MCPcopy Create free account
hub / github.com/OpenFodder/openfodder / Briefing_Get_Mission_Title

Method Briefing_Get_Mission_Title

Source/Fodder.cpp:4090–4102  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4088}
4089
4090std::string cFodder::Briefing_Get_Mission_Title() {
4091 std::stringstream Mission;
4092
4093 if (mGame_Data.mMission_Number == 0) {
4094 Mission << "OPEN FODDER";
4095 }
4096 else {
4097 Mission << "MISSION ";
4098 Mission << tool_StripLeadingZero(std::to_string(mGame_Data.mMission_Number));
4099 }
4100
4101 return Mission.str();
4102}
4103
4104std::string cFodder::Briefing_Get_Phase_Name() {
4105 if (mGame_Data.mMission_Number == 0)

Callers

nothing calls this directly

Calls 1

tool_StripLeadingZeroFunction · 0.85

Tested by

no test coverage detected