mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2024-11-16 20:17:30 +08:00
Fixed DeadEndness Bit Shifting in the wrong direction
thanks alexguirre :D
This commit is contained in:
parent
5a89aa5b14
commit
52d5b1f8d1
@ -349,7 +349,7 @@ namespace CodeWalker.Project.Panels
|
||||
flags3 += (((uint)PathNodeFlags32UpDown.Value & 127u) << 1);
|
||||
|
||||
flags4 += (((uint)PathNodeFlags42UpDown.Value & 15u));
|
||||
flags4 += (((uint)PathNodeFlags43UpDown.Value & 7u) >> 4);
|
||||
flags4 += (((uint)PathNodeFlags43UpDown.Value & 7u) << 4);
|
||||
flags4 = BitUtil.UpdateBit(flags4, 7, PathNodeFlags48CheckBox.Checked);
|
||||
|
||||
flags5 = BitUtil.UpdateBit(flags5, 0, PathNodeFlags51CheckBox.Checked);
|
||||
|
Loading…
Reference in New Issue
Block a user