pmd-red/src/other_random.c
2017-12-11 09:18:22 -08:00

21 lines
346 B
C

#include "global.h"
#include "other_random.h"
extern u16 gOtherRngState;
static s32 OtherRandom16(void)
{
gOtherRngState = 109 * gOtherRngState + 1021;
return gOtherRngState;
}
s32 OtherRandomCapped(s32 cap)
{
return (OtherRandom16() * cap) >> 16;
}
s32 OtherRandomRange(s32 a, s32 b)
{
return OtherRandomCapped(b - a) + a;
}