Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -600,8 +600,10 @@ void DockUpdate::xfer( Xfer *xfer )
for( vectorIndex = 0; vectorIndex < vectorSize; ++vectorIndex )
{
// Vector of Bool gets packed as bitfield internally
// TheSuperHackers @bugfix bobtista 12/08/2026 Write the unpacked value back on load
Bool unpack = m_approachPositionReached[vectorIndex];
xfer->xferBool( &unpack );
m_approachPositionReached[vectorIndex] = unpack;
}

// active docker
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -615,8 +615,10 @@ void DockUpdate::xfer( Xfer *xfer )
for( vectorIndex = 0; vectorIndex < vectorSize; ++vectorIndex )
{
// Vector of Bool gets packed as bitfield internally
// TheSuperHackers @bugfix bobtista 12/08/2026 Write the unpacked value back on load
Bool unpack = m_approachPositionReached[vectorIndex];
xfer->xferBool( &unpack );
m_approachPositionReached[vectorIndex] = unpack;
}

// active docker
Expand Down
Loading