From 4589ceefaf4ec116b950f33331003a499179d827 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Fri, 29 Mar 2013 16:19:43 -0700 Subject: [PATCH] reduce frequency of packets from VS for easier processing --- voxel/src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/voxel/src/main.cpp b/voxel/src/main.cpp index e1c630bbd1..16d736e526 100644 --- a/voxel/src/main.cpp +++ b/voxel/src/main.cpp @@ -39,8 +39,8 @@ const int MIN_BRIGHTNESS = 64; const float DEATH_STAR_RADIUS = 4.0; const float MAX_CUBE = 0.05f; -const int VOXEL_SEND_INTERVAL_USECS = 30 * 1000; -const int PACKETS_PER_CLIENT_PER_INTERVAL = 3; +const int VOXEL_SEND_INTERVAL_USECS = 100g * 1000; +const int PACKETS_PER_CLIENT_PER_INTERVAL = 2; const int MAX_VOXEL_TREE_DEPTH_LEVELS = 4;