mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 07:19:05 +02:00
add a missing semicolon
This commit is contained in:
parent
686404be2b
commit
39e8179473
1 changed files with 2 additions and 2 deletions
|
@ -32,14 +32,14 @@ const float DEATH_STAR_RADIUS = 4.0;
|
||||||
const float MAX_CUBE = 0.05;
|
const float MAX_CUBE = 0.05;
|
||||||
|
|
||||||
char DOMAIN_HOSTNAME[] = "highfidelity.below92.com";
|
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;
|
const int DOMAINSERVER_PORT = 40102;
|
||||||
|
|
||||||
AgentList agentList(VOXEL_LISTEN_PORT);
|
AgentList agentList(VOXEL_LISTEN_PORT);
|
||||||
in_addr_t localAddress;
|
in_addr_t localAddress;
|
||||||
|
|
||||||
unsigned char randomColorValue() {
|
unsigned char randomColorValue() {
|
||||||
return MIN_BRIGHTNESS + (rand() % (255 - MIN_BRIGHTNESS))
|
return MIN_BRIGHTNESS + (rand() % (255 - MIN_BRIGHTNESS));
|
||||||
}
|
}
|
||||||
|
|
||||||
void *reportAliveToDS(void *args) {
|
void *reportAliveToDS(void *args) {
|
||||||
|
|
Loading…
Reference in a new issue