mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 08:04:01 +02:00
fixed local mode
This commit is contained in:
parent
f78f983e2d
commit
0f71627923
1 changed files with 1 additions and 1 deletions
|
@ -1633,7 +1633,7 @@ int main(int argc, const char * argv[])
|
|||
}
|
||||
|
||||
// Handle Local Domain testing with the --local command line
|
||||
if (true || cmdOptionExists(argc, argv, "--local")) {
|
||||
if (cmdOptionExists(argc, argv, "--local")) {
|
||||
printLog("Local Domain MODE!\n");
|
||||
int ip = getLocalAddress();
|
||||
sprintf(DOMAIN_IP,"%d.%d.%d.%d", (ip & 0xFF), ((ip >> 8) & 0xFF),((ip >> 16) & 0xFF), ((ip >> 24) & 0xFF));
|
||||
|
|
Loading…
Reference in a new issue