Scicalc leading zero in negative number
Peter Howkins (211) 236 posts |
Start Scicalc Press the sign button (+-) display is “-0” Potential fix, not actually tested DEF PROCcalc_digit (key$) line IF Entry$="0" THEN Entry$=key$ ELSE Entry$+=key$ replace with IF Entry$="0" THEN Entry$=key$ ELSE IF Entry$="-0" THEN Entry$="-"+key$ ELSE Entry$+=key$ ENDIF ENDIF This bug is not new, I think it’s been there forever |