From 1445c3d154220da23431b478e3268e4b770ff855 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Sun, 10 Mar 2013 22:34:00 -0400 Subject: [PATCH] change to 20ms tick time for smoother movement --- src/game.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game.d b/src/game.d index 6ea9d5a..d62ffe1 100644 --- a/src/game.d +++ b/src/game.d @@ -1,6 +1,6 @@ import inputs; -static enum uint TICK_MS = 50; +static enum uint TICK_MS = 20; static enum int NUM_PLAYERS = 2; static double MOVE_SPEED = 200.0;