- a right shift by 12 was accidently written as one greater than instead of two
This commit is contained in:
parent
ddbefd4c57
commit
f229ae1afd
@ -92,7 +92,7 @@
|
|||||||
(1*((thisctr.count>>0)&0xF)) +
|
(1*((thisctr.count>>0)&0xF)) +
|
||||||
(10*((thisctr.count>>4)&0xF)) +
|
(10*((thisctr.count>>4)&0xF)) +
|
||||||
(100*((thisctr.count>>8)&0xF)) +
|
(100*((thisctr.count>>8)&0xF)) +
|
||||||
(1000*((thisctr.count>12)&0xF))
|
(1000*((thisctr.count>>12)&0xF))
|
||||||
;
|
;
|
||||||
} else {
|
} else {
|
||||||
thisctr.count_binary=thisctr.count;
|
thisctr.count_binary=thisctr.count;
|
||||||
|
Loading…
Reference in New Issue
Block a user