From e87dd06996d726f86c01977659fe6a4c7a071611 Mon Sep 17 00:00:00 2001 From: Paul Dino Jones Date: Tue, 9 Jan 2024 21:20:07 +0000 Subject: [PATCH] No initialization code --- src/monocoque/gameloop/gameloop.c | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/monocoque/gameloop/gameloop.c b/src/monocoque/gameloop/gameloop.c index 9031eb6..aebfb9a 100644 --- a/src/monocoque/gameloop/gameloop.c +++ b/src/monocoque/gameloop/gameloop.c @@ -245,17 +245,6 @@ int looper(SimDevice* devices, int numdevices, Parameters* p) if (p->simon == true && simdata->simstatus > 1) { slogi("preparing game loop with %i devices...", numdevices); - - - slogi("sending initial data to devices"); - simdata->velocity = 16; - simdata->rpms = 100; - for (int x = 0; x < numdevices; x++) - { - devices[x].update(&devices[x], simdata); - } - sleep(3); - clilooper(devices, numdevices, p, simdata, simmap); } if (p->simon == true)