浏览代码

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();

正在加载...
取消
保存