From f2a587252078f1563d10b49a88fabaa3fc3dacd3 Mon Sep 17 00:00:00 2001 From: Paul Dino Jones Date: Tue, 14 Jan 2025 20:23:11 -0500 Subject: [PATCH] temporarily add another step with rpms at 7000 to assist in debugging some wheels --- src/monocoque/gameloop/gameloop.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/monocoque/gameloop/gameloop.c b/src/monocoque/gameloop/gameloop.c index af0b03b..e06c531 100644 --- a/src/monocoque/gameloop/gameloop.c +++ b/src/monocoque/gameloop/gameloop.c @@ -970,6 +970,17 @@ int tester(SimDevice* devices, int numdevices) } sleep(3); + fprintf(stdout, "Setting rpms to 7000\n"); + simdata->rpms = 7000; + for (int x = 0; x < numdevices; x++) + { + if (devices[x].initialized == true) + { + devices[x].update(&devices[x], simdata); + } + } + sleep(3); + fprintf(stdout, "Setting rpms to 8000\n"); simdata->rpms = 8000; for (int x = 0; x < numdevices; x++)