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++)