Fix reserved data detection in DRCS character triplet

This commit is contained in:
G.K.MacGregor
2022-09-22 21:28:29 +01:00
parent 8b655afb2d
commit 75816e7750

View File

@@ -174,8 +174,8 @@ void X26TripletList::updateInternalData()
triplet->m_reservedData = true;
break;
case 0x2d: // DRCS character
if (triplet->m_data >= 48)
// Should really be an error
if ((triplet->m_data & 0x3f) >= 48)
// Should really be an error?
triplet->m_reservedData = true;
}