| 91 | } |
| 92 | |
| 93 | void sync_monster_pos(TSyncMonster *p, int ndx) |
| 94 | { |
| 95 | p->_mndx = ndx; |
| 96 | p->_mx = monster[ndx]._mx; |
| 97 | p->_my = monster[ndx]._my; |
| 98 | p->_menemy = encode_enemy(ndx); |
| 99 | p->_mdelta = sync_word_6AA708[ndx] > 255 ? 255 : sync_word_6AA708[ndx]; |
| 100 | |
| 101 | sync_word_6AA708[ndx] = 0xFFFF; |
| 102 | sgwLRU[ndx] = monster[ndx]._msquelch == 0 ? 0xFFFF : 0xFFFE; |
| 103 | } |
| 104 | |
| 105 | BOOL sync_monster_active2(TSyncMonster *p) |
| 106 | { |
no test coverage detected