shithub: cstory

ref: 1d9446d4258c012f280d3e2d54ce49175f7432cb
dir: /src/Random.cpp/

View raw version
#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;
}