You've already forked pico-launcher
mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-01-09 16:28:48 -08:00
9 lines
188 B
C++
9 lines
188 B
C++
#include "common.h"
|
|
#include "LinearCongruentialGenerator.h"
|
|
|
|
u32 LinearCongruentialGenerator::Next()
|
|
{
|
|
_state = _state * 0x5D588B656C078965LL + 0x269EC3LL;
|
|
return _state >> 32;
|
|
}
|