| 75 | } |
| 76 | |
| 77 | xParCmdUpdateFunc xParCmdGetUpdateFunc(U32 parType) |
| 78 | { |
| 79 | for (S32 i = 0; i < XPARCMD_TYPE_COUNT; i++) |
| 80 | { |
| 81 | if (sCmdInfo[i].type == parType) |
| 82 | { |
| 83 | return sCmdInfo[i].func; |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | return NULL; |
| 88 | } |
| 89 | |
| 90 | void xParCmdKillSlow_Update(xParCmd* c, xParGroup* ps, F32 dt) |
| 91 | { |
no outgoing calls
no test coverage detected