- FBX: workaround to handle files using the 'b' typecode.
parent
03c01685d3
commit
bbe8763d9e
|
@ -206,12 +206,19 @@ void ReadData(const char*& sbegin_out, const char*& send_out, const char* input,
|
||||||
// note: do not write cursor += ReadWord(...cursor) as this would be UB
|
// note: do not write cursor += ReadWord(...cursor) as this would be UB
|
||||||
|
|
||||||
// raw binary data
|
// raw binary data
|
||||||
case 'R': {
|
case 'R':
|
||||||
|
{
|
||||||
const uint32_t length = ReadWord(input, cursor, end);
|
const uint32_t length = ReadWord(input, cursor, end);
|
||||||
cursor += length;
|
cursor += length;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
case 'b':
|
||||||
|
// TODO: what is the 'b' type code? Right now we just skip over it /
|
||||||
|
// take the full range we could get
|
||||||
|
cursor = end;
|
||||||
|
break;
|
||||||
|
|
||||||
// array of *
|
// array of *
|
||||||
case 'f':
|
case 'f':
|
||||||
case 'd':
|
case 'd':
|
||||||
|
|
Loading…
Reference in New Issue