| 742 | } |
| 743 | |
| 744 | void CTriggerDialog::OnTrigPrevInMine() { |
| 745 | ASSERT(Current_trigger != -1); |
| 746 | |
| 747 | if (--Current_trigger < 0) |
| 748 | Current_trigger += Num_triggers; |
| 749 | |
| 750 | SetCurroomFromTrigger(); |
| 751 | |
| 752 | UpdateDialog(); |
| 753 | } |
| 754 | |
| 755 | void CTriggerDialog::OnTrigPrevInRoom() { |
| 756 | int n = FindPrevTrigInRoom(ROOMNUM(Curroomp), Current_trigger); |
nothing calls this directly
no test coverage detected