Create functionally equivalent C for handwritten RNG2 functions

This commit is contained in:
Ryan Dwyer
2022-11-18 22:42:04 +10:00
parent 1b0e512e2a
commit 9c7ba4da9d
12 changed files with 49 additions and 20 deletions
-10
View File
@@ -1,10 +0,0 @@
#ifndef IN_GAME_GAME_1291B0_H
#define IN_GAME_GAME_1291B0_H
#include <ultra64.h>
#include "data.h"
#include "types.h"
u32 random2(void);
void rng2SetSeed(u32 seed);
#endif
+9
View File
@@ -0,0 +1,9 @@
#ifndef IN_GAME_RNG2_H
#define IN_GAME_RNG2_H
#include <ultra64.h>
#include "data.h"
#include "types.h"
u32 random2(void);
#endif