| 441 | }*/ |
| 442 | |
| 443 | void CDoorwayDialog::OnNextDoor() { |
| 444 | if (Num_doors <= 0) |
| 445 | return; |
| 446 | |
| 447 | D3EditState.current_door = GetNextDoor(D3EditState.current_door); |
| 448 | UpdateDialog(); |
| 449 | } |
| 450 | |
| 451 | void CDoorwayDialog::OnPrevDoor() { |
| 452 | if (Num_doors <= 0) |
nothing calls this directly
no test coverage detected