oopsie daisy

This commit is contained in:
Lea 2023-09-19 08:02:31 +02:00
parent 9e74811115
commit cf04307ee5
Signed by: Lea
GPG key ID: 1BAFFE8347019C42

View file

@ -29,7 +29,7 @@ uint8_t digit_to_binary(bool period, uint8_t digit) {
case 8: return val | 0x7f;
case 9: return val | 0x6f;
// by default draw a dash
default: return 0x01000000;
default: return 0b01000000;
}
}