libfis: fix inverted CHS bit
This commit is contained in:
parent
63b8965b42
commit
a9dd55c2ff
1 changed files with 1 additions and 1 deletions
|
@ -238,7 +238,7 @@ idfeat(Sfis *f, ushort *id)
|
|||
f->feat |= Datapi;
|
||||
i = gbit16(id + 49);
|
||||
if((i & Ilbasp) == 0){
|
||||
if(gbit16(id + 53) & 1){
|
||||
if((gbit16(id + 53) & 1) == 0){
|
||||
f->c = gbit16(id + 1);
|
||||
f->h = gbit16(id + 3);
|
||||
f->s = gbit16(id + 6);
|
||||
|
|
Loading…
Reference in a new issue