From b4203884ef1116a307f99cceb7e52536285a2683 Mon Sep 17 00:00:00 2001 From: Karma Riuk Date: Wed, 17 May 2023 13:21:43 +0200 Subject: [PATCH] Changed to delta so that the edge cases happen less (since the 'move less' each frame) --- game.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game.h b/game.h index d41456d..568fe88 100644 --- a/game.h +++ b/game.h @@ -8,7 +8,7 @@ extern double delta; /* simulation time delta in seconds */ -#define DEFAULT_DELTA 0.01 +#define DEFAULT_DELTA 0.001 extern int width; /* game canvas width */ extern int height; /* game canvas height */