ref: d3e18d795d59fb2f380dd1df1faf2d95dece8ef4
dir: /src/Random.cpp/
#include "Random.h" // A replication of MSVC's rand algorithm static unsigned long next = 1; int msvc_rand(void) { next = ((next) * 214013 + 2531011); return ((next) >> 16) & 0x7FFF; } void msvc_srand(unsigned int seed) { next = seed; }