summaryrefslogtreecommitdiff
path: root/src/code/rand.c
diff options
context:
space:
mode:
authorcadmic <cadmic24@gmail.com>2024-09-06 05:46:44 -0700
committerGitHub <noreply@github.com>2024-09-06 14:46:44 +0200
commit2ce648a7c674b08fbfe9d4ced935b4e4956963ac (patch)
treea4e05193caf981bab3c3cb6e7d6daccaa9cefcd1 /src/code/rand.c
parent53b2110373eb506d9c035697c0719851a77936d4 (diff)
Miscellaneous libultra header fixes (#2139)
* Miscellaneous libultra header fixes * Fix bss? * Reword RCP timeout
Diffstat (limited to 'src/code/rand.c')
-rw-r--r--src/code/rand.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/code/rand.c b/src/code/rand.c
index 378f0456e..d6199b189 100644
--- a/src/code/rand.c
+++ b/src/code/rand.c
@@ -42,6 +42,7 @@
* @note Original name: qrand.c
*/
#include "rand.h"
+#include "z64math.h"
#define RAND_MULTIPLIER 1664525
#define RAND_INCREMENT 1013904223
@@ -59,7 +60,7 @@ static u32 sRandInt = 1;
*
* @note Orignal name: __qrand_itemp
*/
-static fu sRandFloat;
+static FloatInt sRandFloat;
#endif
/**