Skip to content

Commit

Permalink
Fix nightly post-#50528 merge (#51432)
Browse files Browse the repository at this point in the history
  • Loading branch information
weswigham committed Nov 7, 2022
1 parent a329210 commit d83a5e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/debug/dbg.ts
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ namespace Debug {
const above = lane > 0 ? connectors[column][lane - 1] : 0;
let connector = connectors[column][lane];
if (!connector) {
if (left & Connection.Right) connector |= Connection.LeftRight;
if (left & Connection.Right) connector = Connection.LeftRight;
if (above & Connection.Down) connector |= Connection.UpDown;
connectors[column][lane] = connector;
}
Expand Down

0 comments on commit d83a5e1

Please sign in to comment.