From f937170b67a87787ffee675b6d77245f6d3b7e47 Mon Sep 17 00:00:00 2001 From: ZappoMan Date: Wed, 2 Oct 2013 21:18:35 -0700 Subject: [PATCH] fixed PR feedback --- animation-server/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/animation-server/src/main.cpp b/animation-server/src/main.cpp index a2e190c7f3..2ffc46ee2e 100644 --- a/animation-server/src/main.cpp +++ b/animation-server/src/main.cpp @@ -46,7 +46,7 @@ bool nonThreadedPacketSender = false; const int ANIMATION_LISTEN_PORT = 40107; const int ACTUAL_FPS = 60; const double OUR_FPS_IN_MILLISECONDS = 1000.0/ACTUAL_FPS; // determines FPS from our desired FPS -const int FUDGE_USECS = 10.0; // a little bit of fudge to actually do some processing +const int FUDGE_USECS = 10; // a little bit of fudge to actually do some processing const int ANIMATE_VOXELS_INTERVAL_USECS = (OUR_FPS_IN_MILLISECONDS * 1000.0) - FUDGE_USECS; // converts from milliseconds to usecs bool wantLocalDomain = false;