From 8d3ba3c75e5944e1228e69afc6afe51724f260b1 Mon Sep 17 00:00:00 2001 From: cinnaboot Date: Fri, 17 Jun 2022 08:20:51 -0400 Subject: [PATCH] use new applyManeuver() signature --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 352733d..a306f9a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -269,7 +269,7 @@ updateOrbit(GameOrbit* orbit, bool running, double time_step) previous_true_anom, orbit->system.sat.theta)) { - applyManeuver(orbit); + applyManeuver(orbit, previous_true_anom); removeManeuver(orbit); } }