- a right shift by 12 was accidently written as one greater than instead of two

This commit is contained in:
Bryce Denney 2001-08-14 04:53:32 +00:00
parent ddbefd4c57
commit f229ae1afd
1 changed files with 1 additions and 1 deletions

View File

@ -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;