diff options
author | camthesaxman <cameronghall@cox.net> | 2017-12-05 12:27:33 -0600 |
---|---|---|
committer | camthesaxman <cameronghall@cox.net> | 2017-12-05 12:27:33 -0600 |
commit | 00896cb3b5813cb843e5e1abd4cbc9ff0ad3a632 (patch) | |
tree | f4158fb4252bb1216e1de45f285cf2c1fdadb377 /include | |
parent | fd75493bc6f4a3c91158d8158edbb4cf964d08bc (diff) |
rename rng.c to random.c and rom4.c to overworld.c
Diffstat (limited to 'include')
-rw-r--r-- | include/random.h (renamed from include/rng.h) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/rng.h b/include/random.h index ae98e575f..79a9d71dc 100644 --- a/include/rng.h +++ b/include/random.h @@ -1,5 +1,5 @@ -#ifndef GUARD_RNG_H -#define GUARD_RNG_H +#ifndef GUARD_RANDOM_H +#define GUARD_RANDOM_H extern u32 gRngValue; extern u32 gRng2Value; @@ -15,4 +15,4 @@ u16 Random2(void); void SeedRng(u16 seed); void SeedRng2(u16 seed); -#endif // GUARD_RNG_H +#endif // GUARD_RANDOM_H |