1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-08-13 23:13:49 -04:00

Fix missing bit from vessel type.

This commit is contained in:
Jon Beniston
2026-07-31 02:16:22 +01:00
parent 068b7c376f
commit 1b5faedf9f
+1 -1
View File
@@ -628,7 +628,7 @@ AISExtendedClassBPositionReport::AISExtendedClassBPositionReport(QByteArray ba)
m_name = AISMessage::getString(ba, 17, 1, 20);
m_type = ((ba[32] & 1) << 7) | ((ba[33] >> 1) & 0x3f);
m_type = ((ba[32] & 1) << 7) | ((ba[33] >> 1) & 0x7f);
}
QString AISExtendedClassBPositionReport::toString()