From eac493e412cdcaac8c22be3f9b1b5d6715745b23 Mon Sep 17 00:00:00 2001 From: Julia09055x Date: Wed, 13 Dec 2023 09:16:05 +0100 Subject: [PATCH] Spielzyklus in main mit GET_TIME_MS() realisiert --- src/main.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 6c8f12c..079f4d0 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -44,14 +44,16 @@ int main(int argc, char *argv[]) time_t now; - now = clock()*1000/CLOCKS_PER_SEC; // Timer startet + now = GET_TIME_MS(); // Timer startet game.timestampLastCycle = now; + int diff; while(game.gameState != EXIT) { if (game.gameState == RUNNING) { - now = clock()*1000/CLOCKS_PER_SEC; // Timer startet + now = GET_TIME_MS(); // Timer startet + diff = now-game.timestampLastCycle; - if (now - game.timestampLastCycle > config.cycleDurationMs){ + if (diff > config.cycleDurationMs){ game.timestampLastCycle = now; runGameCycle(); }