| 122 | } |
| 123 | |
| 124 | S32 zAnimListGetNumUsed(U32 id) |
| 125 | { |
| 126 | U32* current_id = aids; |
| 127 | |
| 128 | for (S32 i = 0; i < nals; i++) |
| 129 | { |
| 130 | if (id == *current_id) |
| 131 | { |
| 132 | return anused[i]; |
| 133 | } |
| 134 | current_id++; |
| 135 | } |
| 136 | |
| 137 | return 0; |
| 138 | } |
no outgoing calls
no test coverage detected