| 106 | } |
| 107 | |
| 108 | xAnimTable* zAnimListGetTable(U32 id) |
| 109 | { |
| 110 | U32* current_id = aids; |
| 111 | |
| 112 | for (S32 i = 0; i < nals; i++) |
| 113 | { |
| 114 | if (id == *current_id) |
| 115 | { |
| 116 | return atbls[i]; |
| 117 | } |
| 118 | current_id++; |
| 119 | } |
| 120 | |
| 121 | return NULL; |
| 122 | } |
| 123 | |
| 124 | S32 zAnimListGetNumUsed(U32 id) |
| 125 | { |
no outgoing calls
no test coverage detected