From 669732abbe78ad6dad6b5f7273f595befd630cba Mon Sep 17 00:00:00 2001 From: Dragorn421 Date: Wed, 1 Dec 2021 00:40:42 +0100 Subject: Misc Cleanup 2 (#1007) * Cleanup `UNK_TYPE`, `UNK_PTR` usage * Add some missing empty lines after declarations * Remove some legacy comments from non-matching times * Fix some grammar (mostly "it's"/"its") * Use proper names for two symbols after ZAPD bugfix * Cleanup `place_title_cards.xml` * Use `NULL` to check against `D_8012D260` pointer * Parentheses around some macro arguments * wip proofread headers up to z64animation.h --- src/code/code_800FD970.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/code/code_800FD970.c') 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 -- cgit v1.2.3