| 1396 | } |
| 1397 | |
| 1398 | void cFodder::Recruit_Truck_Anim_CopyFrames(uint16** pDi, const int16* pSource) { |
| 1399 | int16 ax; |
| 1400 | |
| 1401 | for (;;) { |
| 1402 | ax = *pSource++; |
| 1403 | |
| 1404 | if (ax < 0) |
| 1405 | break; |
| 1406 | |
| 1407 | **pDi = ax; |
| 1408 | (*pDi)++; |
| 1409 | } |
| 1410 | } |
| 1411 | |
| 1412 | void cFodder::Recruit_Draw_Grave(int16 pSpriteType, const size_t pPosX, const size_t pPosY) { |
| 1413 | pSpriteType >>= 1; |
nothing calls this directly
no outgoing calls
no test coverage detected