| 722 | } |
| 723 | |
| 724 | void CTriggerDialog::OnTrigNextInMine() { |
| 725 | ASSERT(Current_trigger != -1); |
| 726 | |
| 727 | Current_trigger = (Current_trigger + 1) % Num_triggers; |
| 728 | |
| 729 | SetCurroomFromTrigger(); |
| 730 | |
| 731 | UpdateDialog(); |
| 732 | } |
| 733 | |
| 734 | void CTriggerDialog::OnTrigNextInRoom() { |
| 735 | int n = FindNextTrigInRoom(ROOMNUM(Curroomp), Current_trigger); |
nothing calls this directly
no test coverage detected