From 39e81794734ac8bb83bb5150b686eba1a1147de3 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Fri, 8 Mar 2013 14:33:37 -0800 Subject: [PATCH] add a missing semicolon --- 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 6fed2f9d3a..689395ac5b 100644 --- a/voxel/src/main.cpp +++ b/voxel/src/main.cpp @@ -32,14 +32,14 @@ const float DEATH_STAR_RADIUS = 4.0; const float MAX_CUBE = 0.05; char DOMAIN_HOSTNAME[] = "highfidelity.below92.com"; -char DOMAIN_IP[100] = ""; // IP Address will be re-set by lookup on startup +char DOMAIN_IP[100] = "192.168.1.47"; // IP Address will be re-set by lookup on startup const int DOMAINSERVER_PORT = 40102; AgentList agentList(VOXEL_LISTEN_PORT); in_addr_t localAddress; unsigned char randomColorValue() { - return MIN_BRIGHTNESS + (rand() % (255 - MIN_BRIGHTNESS)) + return MIN_BRIGHTNESS + (rand() % (255 - MIN_BRIGHTNESS)); } void *reportAliveToDS(void *args) {