Files
ac-decomp/src/MSL_C/rand.c
T
2023-01-09 08:50:19 +01:00

12 lines
181 B
C

#include "rand.h"
static u32 next = 1;
void srand(u32 seed){
next = seed;
}
int rand(){
next = next * 1103515245 + 12345;
return ((next >> 16) & 0x7fff);
}