MCPcopy Create free account
hub / github.com/DescentDevelopers/Descent3 / TelCom_PostProcessCustomKeyEvents

Function TelCom_PostProcessCustomKeyEvents

Descent3/TelCom.cpp:4092–4103  ·  view source on GitHub ↗

Post process custom keys */

Source from the content-addressed store, hash-verified

4090 Post process custom keys
4091*/
4092void TelCom_PostProcessCustomKeyEvents(void) {
4093 tCustomKeyEventID *curr = Telcom_custom_key_event_root;
4094
4095 while (curr) {
4096 if (curr->downcount) {
4097 TelCom_SendSystemEvent(curr->event_id);
4098 return;
4099 }
4100
4101 curr = curr->next;
4102 }
4103}
4104
4105/*
4106 Handles a possible custom key event

Callers 1

TelComHandleAllEventsFunction · 0.85

Calls 1

TelCom_SendSystemEventFunction · 0.85

Tested by

no test coverage detected