| 533 | } |
| 534 | |
| 535 | BOOL SkipThemeRoom(int x, int y) |
| 536 | { |
| 537 | int i; |
| 538 | |
| 539 | for (i = 0; i < themeCount; i++) { |
| 540 | if (x >= themeLoc[i].x - 2 && x <= themeLoc[i].x + themeLoc[i].width + 2 |
| 541 | && y >= themeLoc[i].y - 2 && y <= themeLoc[i].y + themeLoc[i].height + 2) |
| 542 | return FALSE; |
| 543 | } |
| 544 | |
| 545 | return TRUE; |
| 546 | } |
| 547 | |
| 548 | void InitLevels() |
| 549 | { |
no outgoing calls
no test coverage detected