Calibration: fix checking of scan of calibration points

PFW-1223
This commit is contained in:
DESKTOP-AFI832L\admin 2021-04-13 15:18:56 +02:00 committed by DRracer
parent 7356cd0811
commit 5a91e1de4d

View file

@ -918,7 +918,7 @@ bool check_scan(uint8_t *matrix32){
for (int16_t i = 0; i < 32*32;++i){
if (matrix32[i] == 0) {
++mins;
} else {
} else if (matrix32[i] == 0xFF){
++maxs;
}
}