From 8528b028e507ae0a226ef398003c1107da260de1 Mon Sep 17 00:00:00 2001 From: Anson Date: Sun, 14 Nov 2021 17:13:49 -0700 Subject: [PATCH] keep platforms the same --- include/native.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/native.h b/include/native.h index d12f87a..1cd18fa 100644 --- a/include/native.h +++ b/include/native.h @@ -117,10 +117,10 @@ void printSimResults(Vehicle &State) { std::cout << "Final Angles: [" << State.yaw << ", " << State.pitch << "]" << std::endl; - if (landing_velocity < 0.5) { - std::cout << "Landing Velocity < 0.5 m/s | PASS | "; + if (landing_velocity < 1.0) { + std::cout << "Landing Velocity < 1.0 m/s | PASS | "; } else { - std::cout << "Landing Velocity < 0.5 m/s | FAIL | "; + std::cout << "Landing Velocity < 1.0 m/s | FAIL | "; } std::cout << "Final Velocity: [" << State.vx << ", " << State.vy << ", " << State.vz << "]" << std::endl;