entity_t and brush_t now converted to idEditorEntity and idEditorBrush

This commit is contained in:
Justin Marshall
2026-05-24 11:33:16 -07:00
parent d6d01e1faf
commit 3242531044
41 changed files with 1598 additions and 1540 deletions
+2 -2
View File
@@ -713,7 +713,7 @@ void CSurfaceDlg::SetTexMods() {
}
else {
if (selected_brushes.next != &selected_brushes) {
brush_t* b = selected_brushes.next;
idEditorBrush* b = selected_brushes.next;
if (!b->pPatch) {
selFace = b->brush_faces;
}
@@ -1059,7 +1059,7 @@ void CSurfaceDlg::OnBtnBrushfit() {
void CSurfaceDlg::OnBtnFacefit() {
UpdateData(TRUE);
/*
brush_t *b;
idEditorBrush *b;
for (b=selected_brushes.next ; b != &selected_brushes ; b=b->next) {
if (!b->patchBrush) {
for (face_t* pFace = b->brush_faces; pFace; pFace = pFace->next) {