Skip to content

Commit 07c973f

Browse files
committed
Fix initial on road saving
1 parent e08d10c commit 07c973f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tracks/track_sector.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ void TrackSector::saveCompleteState(BareNetworkString* bns)
204204
bns->add(m_current_track_coords);
205205
bns->add(m_estimated_valid_track_coords);
206206
bns->add(m_latest_valid_track_coords);
207-
bns->addUInt8(m_on_road ? 0 : 1);
207+
bns->addUInt8(m_on_road ? 1 : 0);
208208
bns->addUInt32(m_last_triggered_checkline);
209209
} // saveCompleteState
210210

0 commit comments

Comments
 (0)