kernel: fix.c: fix inverted CHS bit

This commit is contained in:
Giacomo Tesio 2017-08-11 06:12:44 +02:00
parent 330b7cc217
commit aef20dca20
1 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,7 @@ idfeat(Sfis *f, uint16_t *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);