| 9 | int WarpDropY[MAXPORTAL] = { 40, 40, 40, 40 }; |
| 10 | |
| 11 | void InitPortals() |
| 12 | { |
| 13 | int i; |
| 14 | |
| 15 | for (i = 0; i < MAXPORTAL; i++) { |
| 16 | if (delta_portal_inited(i)) |
| 17 | portal[i].open = FALSE; |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | void SetPortalStats(int i, BOOL o, int x, int y, int lvl, int lvltype) |
| 22 | { |
no test coverage detected