Spielzyklus in main mit GET_TIME_MS() realisiert
This commit is contained in:
parent
aaf4eb398a
commit
eac493e412
@ -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();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user