fcs icon indicating copy to clipboard operation
fcs copied to clipboard

cannot handle $BYTEORD= 1,2

Open Zander1983 opened this issue 7 years ago • 4 comments

For some FCS files I get the above error. I see it in the code here:

    if ('4,3,2,1' === this.text.$BYTEORD)
       isBE = true;
    else if ('1,2,3,4' === this.text.$BYTEORD)
        isBE = false;
    else
       throw 'cannot handle $BYTEORD= ' + this.text.$BYTEORD;

Any plans to fix this? Ill try myself

Zander1983 avatar Apr 11 '17 07:04 Zander1983