Fix binary formatting for integers 2 and 3

This commit is contained in:
mierenhoop 2024-03-10 00:05:47 +01:00
parent a6baba1b07
commit f0ea11c70f

View file

@ -21,7 +21,7 @@
static inline int PickGoodWidth(unsigned x) {
if (x < 16) {
if (x < 2) return 0;
if (x < 2) return 1;
if (x < 8) return 7;
return 15;
} else {