mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-25 21:31:14 +00:00
Visual Mode: fixed a crash when toggling visual vertex slope picking and the map contains double-sided linedefs without a front sidedef. Fixes #928
This commit is contained in:
parent
f3ac4c39a4
commit
58480f5b31
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ namespace CodeImp.DoomBuilder.VisualModes
|
|||
|
||||
angle = line.GetAngle();
|
||||
|
||||
if (ld.Front.Sector != s)
|
||||
if (ld.Front?.Sector != s)
|
||||
clockwise = !clockwise;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue