diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-02-14 16:05:43 -0500 |
---|---|---|
committer | huderlem <huderlem@gmail.com> | 2020-02-25 12:54:08 -0600 |
commit | 6eb44dc50714f184cea4453704636370263e7efc (patch) | |
tree | 98f65d1f3cacfcf7c794b5244da17edb96d58e54 /include | |
parent | b1d131ace2191a76d57ffe5804348a8757a39628 (diff) |
Document move anims A-C
Diffstat (limited to 'include')
-rw-r--r-- | include/random.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/random.h b/include/random.h index 79a9d71dc..85ff71abf 100644 --- a/include/random.h +++ b/include/random.h @@ -10,6 +10,8 @@ u16 Random2(void); //Returns a 32-bit pseudorandom number #define Random32() (Random() | (Random() << 16)) +#define ISO_RANDOMIZE1(val)(1103515245 * (val) + 24691) +#define ISO_RANDOMIZE2(val)(1103515245 * (val) + 12345) //Sets the initial seed value of the pseudorandom number generator void SeedRng(u16 seed); |