| 732 | } |
| 733 | |
| 734 | void CTriggerDialog::OnTrigNextInRoom() { |
| 735 | int n = FindNextTrigInRoom(ROOMNUM(Curroomp), Current_trigger); |
| 736 | |
| 737 | ASSERT(n != -1); |
| 738 | |
| 739 | Current_trigger = n; |
| 740 | |
| 741 | SetCurroomFromTrigger(); |
| 742 | } |
| 743 | |
| 744 | void CTriggerDialog::OnTrigPrevInMine() { |
| 745 | ASSERT(Current_trigger != -1); |
nothing calls this directly
no test coverage detected