Skip to content
Snippets Groups Projects
Commit 58480f5b authored by biwa's avatar biwa
Browse files

Visual Mode: fixed a crash when toggling visual vertex slope picking and the...

Visual Mode: fixed a crash when toggling visual vertex slope picking and the map contains double-sided linedefs without a front sidedef. Fixes #928
parent f3ac4c39
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,7 @@ namespace CodeImp.DoomBuilder.VisualModes
angle = line.GetAngle();
if (ld.Front.Sector != s)
if (ld.Front?.Sector != s)
clockwise = !clockwise;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment