MCPcopy Create free account
hub / github.com/bfbbdecomp/bfbb / NPCPS_grabMsg

Function NPCPS_grabMsg

src/SB/Game/zNPCMessenger.cpp:218–229  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

216}
217
218static S32 NPCPS_grabMsg()
219{
220 NPCPSData* npc = NPCPS_postOffice();
221 NPCMsg* grabbed_msg = npc->msgfree;
222 if (grabbed_msg == NULL)
223 {
224 return 0;
225 }
226 npc->msgfree = grabbed_msg->next;
227 grabbed_msg->next = NULL;
228 return (S32)grabbed_msg;
229}
230
231static void NPCPS_freeMsg(NPCMsg* inmsg)
232{

Callers 1

zNPCMsg_SendMsgFunction · 0.85

Calls 1

NPCPS_postOfficeFunction · 0.85

Tested by

no test coverage detected