diff options
author | YamaArashi <shadow962@live.com> | 2016-09-25 12:06:59 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-09-25 12:06:59 -0700 |
commit | a5727f581bb76e0a2240f3a352204689d18a25e2 (patch) | |
tree | 077c23ac87136164b76739af1aaf7530d1575c90 /src/rng.c | |
parent | 012896c6d89e9ced8c712edfe32595fd81c27882 (diff) |
define more variables in C
Diffstat (limited to 'src/rng.c')
-rw-r--r-- | src/rng.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1,6 +1,8 @@ #include "global.h" #include "rng.h" +u32 gRngValue; + u16 Random(void) { gRngValue = 0x41c64e6d * gRngValue + 0x00006073; |