(svn r23481) -Add: Function to get the CPU core count.

This commit is contained in:
michi_cc
2011-12-10 16:54:41 +00:00
parent 0ca25fb3af
commit a0f3649c1a
5 changed files with 67 additions and 0 deletions

View File

@@ -210,3 +210,8 @@ void CSleep(int milliseconds)
const char *FS2OTTD(const char *name) {return name;}
const char *OTTD2FS(const char *name) {return name;}
uint GetCPUCoreCount()
{
return 1;
}