DoukutsuNikki/src/Random.cpp
2022-11-03 02:29:20 -04:00

15 lines
243 B
C++

#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;
}