1
0

MCServer should be running fast again on Linux!! YAAAY!!

It seems the intialization of MersenneTwister was really slow on Linux because it did some file reading. Doing this 200 times a tick can be pretty slow...

StringUtils didn't compile in Cygwin due to missing va_list definition

git-svn-id: http://mc-server.googlecode.com/svn/trunk@230 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
faketruth
2012-02-03 16:01:25 +00:00
parent b8be8a4df0
commit c4abe1ed6a
2 changed files with 7 additions and 0 deletions

View File

@@ -11,6 +11,10 @@
#ifndef _WIN32
#include <stdarg.h>
#endif
typedef std::string AString;