| 1425 | } |
| 1426 | |
| 1427 | void CEditorView::OnRoomDeleteConnectedFaces() { |
| 1428 | if (OutrageMessageBox( |
| 1429 | MBOX_YESNO, |
| 1430 | "This function will delete all faces connected to room %d face %d. This could be very dangerous.\n\n" |
| 1431 | "Are you sure you want to continue?", |
| 1432 | ROOMNUM(Curroomp), Curface) != IDYES) |
| 1433 | return; |
| 1434 | |
| 1435 | DeleteAllConnectedFaces(Curroomp, Curface); |
| 1436 | |
| 1437 | Curface = 0; |
| 1438 | |
| 1439 | if (Markedroomp == Curroomp) |
| 1440 | Markedroomp = NULL; |
| 1441 | } |
| 1442 | |
| 1443 | void CEditorView::OnRoomRotatePlacedRoom45Degrees() { |
| 1444 | Placed_room_angle += 65536 / 8; |
nothing calls this directly
no test coverage detected