| 1764 | } |
| 1765 | |
| 1766 | void ObjSetMini(Point position, int v) |
| 1767 | { |
| 1768 | MegaTile mega = pMegaTiles[v - 1]; |
| 1769 | |
| 1770 | Point megaOrigin = position.megaToWorld(); |
| 1771 | |
| 1772 | ObjSetMicro(megaOrigin, SDL_SwapLE16(mega.micro1)); |
| 1773 | ObjSetMicro(megaOrigin + Direction::SouthEast, SDL_SwapLE16(mega.micro2)); |
| 1774 | ObjSetMicro(megaOrigin + Direction::SouthWest, SDL_SwapLE16(mega.micro3)); |
| 1775 | ObjSetMicro(megaOrigin + Direction::South, SDL_SwapLE16(mega.micro4)); |
| 1776 | } |
| 1777 | |
| 1778 | void ObjL1Special(int x1, int y1, int x2, int y2) |
| 1779 | { |
no test coverage detected