- attempt to fix additional oos issues

This commit is contained in:
Mark Vejvoda
2013-09-28 05:06:04 +00:00
parent 91b7803270
commit 9967df316c
13 changed files with 98 additions and 112 deletions

View File

@@ -231,10 +231,10 @@ void copyStringToBuffer(char *buffer, int bufferSize, const string& s);
//numeric fcs
int clamp(int value, int min, int max);
float clamp(float value, float min, float max);
double clamp(double value, double min, double max);
int64 clamp(int64 value, int64 min, int64 max);
float saturate(float value);
int round(float f);
double saturate(double value);
int round(double f);
//misc
bool checkVersionComptability(string clientVersionString, string serverVersionString);