mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-12 04:57:06 -04:00
Fix JUT_ASSERT and several other macros (#2711)
* Fix JUT_ASSERT to be a nested define * Switch names that appear in asserts to be constants instead of defines * Replace `0` in asserts with `NULL` or `FALSE` * Fix fpclassify * Fix ARRAY_SIZE * Use G_CM3D_F_INF * More fixes for fpclassify * Remove FLOAT_LABEL * Remove incorrect FLAG_ON macro * Remove UNK_BSS macro * Silence clangd unused header warning for PCH
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include "d/dolzel.h"
|
||||
#include "d/dolzel.h" // IWYU pragma: keep
|
||||
|
||||
#include "d/d_cc_mass_s.h"
|
||||
#include "SSystem/SComponent/c_math.h"
|
||||
@@ -48,11 +48,11 @@ void dCcMassS_Mng::Ct() {
|
||||
field_0x202 = 0;
|
||||
mResultCam = 0;
|
||||
mCamTopPos.x = 0.0f;
|
||||
mCamTopPos.y = -1000000000.0f;
|
||||
mCamTopPos.y = -G_CM3D_F_INF;
|
||||
mCamTopPos.z = 0.0f;
|
||||
|
||||
mCamBottomPos.x = 0.0f;
|
||||
mCamBottomPos.y = -1000000000.0f;
|
||||
mCamBottomPos.y = -G_CM3D_F_INF;
|
||||
mCamBottomPos.z = 0.0f;
|
||||
|
||||
Clear();
|
||||
@@ -106,14 +106,14 @@ void dCcMassS_Mng::Prepare() {
|
||||
}
|
||||
|
||||
mCamTopPos.x = 0.0f;
|
||||
mCamTopPos.y = -1000000000.0f;
|
||||
mCamTopPos.y = -G_CM3D_F_INF;
|
||||
mCamTopPos.z = 0.0f;
|
||||
mCamTopDist = 1000000000.0f;
|
||||
mCamTopDist = G_CM3D_F_INF;
|
||||
|
||||
mCamBottomPos.x = 0.0f;
|
||||
mCamBottomPos.y = -1000000000.0f;
|
||||
mCamBottomPos.y = -G_CM3D_F_INF;
|
||||
mCamBottomPos.z = 0.0f;
|
||||
mCamBottomDist = 1000000000.0f;
|
||||
mCamBottomDist = G_CM3D_F_INF;
|
||||
}
|
||||
|
||||
/* 800858AC-80085CF0 0801EC 0444+00 0/0 0/0 2/2 .text
|
||||
|
||||
Reference in New Issue
Block a user