diff options
Diffstat (limited to 'src/code/code_800FD970.c')
| -rw-r--r-- | src/code/code_800FD970.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/code/code_800FD970.c b/src/code/code_800FD970.c index c89a08654..d1efcdc3a 100644 --- a/src/code/code_800FD970.c +++ b/src/code/code_800FD970.c @@ -61,6 +61,7 @@ u32 Rand_Next_Variable(u32* rndNum) { */ f32 Rand_ZeroOne_Variable(u32* rndNum) { u32 next = (*rndNum * 1664525) + 1013904223; + // clang-format off *rndNum = next; sRandFloat = (next >> 9) | 0x3F800000; // clang-format on @@ -73,6 +74,7 @@ f32 Rand_ZeroOne_Variable(u32* rndNum) { */ f32 Rand_Centered_Variable(u32* rndNum) { u32 next = (*rndNum * 1664525) + 1013904223; + // clang-format off *rndNum = next; sRandFloat = (next >> 9) | 0x3F800000; // clang-format on |
