mirror of
https://github.com/glest/glest-source.git
synced 2025-08-14 04:13:58 +02:00
try to see if this makes disabled network crc checking more performance freindly
This commit is contained in:
@@ -32,6 +32,7 @@ private:
|
||||
private:
|
||||
int lastNumber;
|
||||
std::vector<std::string> lastCaller;
|
||||
bool disableLastCallerTracking;
|
||||
|
||||
int rand(std::string lastCaller);
|
||||
|
||||
@@ -46,9 +47,9 @@ public:
|
||||
void setLastNumber(int value) { lastNumber = value; }
|
||||
|
||||
std::string getLastCaller() const;
|
||||
void clearLastCaller() { lastCaller.clear(); }
|
||||
//void clearLastCaller() { }
|
||||
void addLastCaller(std::string text) { lastCaller.push_back(text); }
|
||||
void clearLastCaller();
|
||||
void addLastCaller(std::string text);
|
||||
void setDisableLastCallerTracking(bool value) { disableLastCallerTracking = value; }
|
||||
};
|
||||
|
||||
}}//end namespace
|
||||
|
Reference in New Issue
Block a user