| 939 | } |
| 940 | |
| 941 | void CPathPadDialog::OnAerButton() { |
| 942 | bn_list *bnlist = BNode_GetBNListPtr(BNode_current_room); |
| 943 | if (!bnlist) |
| 944 | return; |
| 945 | |
| 946 | for (int i = 0; i < bnlist->num_nodes; i++) { |
| 947 | EBNode_AutoEdgeNode(i, BNode_current_room); |
| 948 | } |
| 949 | |
| 950 | EBNode_VerifyGraph(); |
| 951 | World_changed = 1; |
| 952 | } |
| 953 | |
| 954 | void CPathPadDialog::OnOntvgpButton() { |
| 955 | if (Num_game_paths < 1) { |
nothing calls this directly
no test coverage detected