- fbx: fix reading of short data tokens in binary files.
parent
3e86e1b857
commit
8336aa423f
|
@ -174,6 +174,11 @@ void ReadData(const char*& sbegin_out, const char*& send_out, const char* input,
|
||||||
|
|
||||||
switch(type)
|
switch(type)
|
||||||
{
|
{
|
||||||
|
// 16 bit int
|
||||||
|
case 'Y':
|
||||||
|
cursor += 2;
|
||||||
|
break;
|
||||||
|
|
||||||
// 1 bit bool flag (yes/no)
|
// 1 bit bool flag (yes/no)
|
||||||
case 'C':
|
case 'C':
|
||||||
cursor += 1;
|
cursor += 1;
|
||||||
|
|
Loading…
Reference in New Issue