mirror of
https://github.com/glest/glest-source.git
synced 2025-09-02 12:32:34 +02:00
small change to compiler version stamp
This commit is contained in:
@@ -35,7 +35,7 @@ string getCrashDumpFileName(){
|
|||||||
string getNetworkVersionString() {
|
string getNetworkVersionString() {
|
||||||
string version = glestVersionString + " built: " + string(__DATE__) + " " + string(__TIME__);
|
string version = glestVersionString + " built: " + string(__DATE__) + " " + string(__TIME__);
|
||||||
#if defined(WIN32) && defined(_MSC_VER)
|
#if defined(WIN32) && defined(_MSC_VER)
|
||||||
version += " MSC_VER " + _MSC_VER;
|
version += " Compiled using MSC_VER: " + intToStr(_MSC_VER);
|
||||||
#elif defined(__GNUC__)
|
#elif defined(__GNUC__)
|
||||||
|
|
||||||
#if defined(__GNUC__)
|
#if defined(__GNUC__)
|
||||||
@@ -49,7 +49,7 @@ string getNetworkVersionString() {
|
|||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
version += " GNUC_VERSION " + intToStr(__GNUC_VERSION__);
|
version += " Compiled using GNUC_VERSION: " + intToStr(__GNUC_VERSION__);
|
||||||
#endif
|
#endif
|
||||||
return version;
|
return version;
|
||||||
}
|
}
|
||||||
|
@@ -677,7 +677,7 @@ void ClientInterface::waitForMessage()
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
sleep(waitSleepTime);
|
//sleep(waitSleepTime);
|
||||||
waitLoopCount++;
|
waitLoopCount++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -178,7 +178,8 @@ public:
|
|||||||
#pragma pack(push, 1)
|
#pragma pack(push, 1)
|
||||||
class NetworkMessageCommandList: public NetworkMessage{
|
class NetworkMessageCommandList: public NetworkMessage{
|
||||||
private:
|
private:
|
||||||
static const int maxCommandCount= 16*4;
|
//static const int maxCommandCount= 16*4;
|
||||||
|
static const int maxCommandCount = (16 * 4) * 2;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
struct Data{
|
struct Data{
|
||||||
|
@@ -322,7 +322,8 @@ void ServerInterface::waitUntilReady(Checksum* checksum){
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
waitingForHosts.push_back(connectionSlot->getHostName());
|
//waitingForHosts.push_back(connectionSlot->getHostName());
|
||||||
|
waitingForHosts.push_back(connectionSlot->getName());
|
||||||
|
|
||||||
allReady= false;
|
allReady= false;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user