소스 검색

Merge pull request #1907 from thinkyhead/some_fixes

Fix type of code_has_value
Scott Lahteine 10 년 전
부모
커밋
dee6840c50
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      Marlin/Marlin_main.cpp

+ 1
- 1
Marlin/Marlin_main.cpp 파일 보기

@@ -888,7 +888,7 @@ void get_command() {
888 888
   #endif // SDSUPPORT
889 889
 }
890 890
 
891
-float code_has_value() {
891
+bool code_has_value() {
892 892
   char c = *(strchr_pointer + 1);
893 893
   return (c >= '0' && c <= '9') || c == '-' || c == '+' || c == '.';
894 894
 }

Loading…
취소
저장