瀏覽代碼

Update Stream.cpp

main
Frank 4 年之前
父節點
當前提交
ee0c914797
沒有連結到貢獻者的電子郵件帳戶。
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      teensy4/Stream.cpp

+ 1
- 1
teensy4/Stream.cpp 查看文件

@@ -197,7 +197,7 @@ float Stream::parseFloat(char skipChar){
else if(c >= '0' && c <= '9') { // is c a digit?
value = value * 10 + c - '0';
if(isFraction)
fraction *= 0.1;
fraction *= 0.1f;
}
read(); // consume the character we got with peek
c = timedPeek();

Loading…
取消
儲存