ソースを参照

Update Stream.cpp

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

読み込み中…
キャンセル
保存