From 42163764693a83a96ac2a1b5a229472174916d7d Mon Sep 17 00:00:00 2001 From: Austen Adler Date: Sat, 26 Jul 2014 19:28:48 -0400 Subject: [PATCH] Minor bug fix --- src/Subsystems/Sonar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Subsystems/Sonar.cpp b/src/Subsystems/Sonar.cpp index 1f3e5f4..f760a17 100644 --- a/src/Subsystems/Sonar.cpp +++ b/src/Subsystems/Sonar.cpp @@ -55,6 +55,6 @@ float HHSonar::GetInches(std::string from){ //TODO: Delay return x; }else{ - return (float)(-1,0); + return (float)(-1); } }