Remove a bunch of weak func order fakematches

This commit is contained in:
LagoLunatic
2025-08-22 12:22:01 -04:00
parent bcf7c567f2
commit 3862848e4a
7 changed files with 7 additions and 25 deletions
+3 -4
View File
@@ -3,6 +3,9 @@
// Translation Unit: c_bg_w.cpp
//
#if VERSION == VERSION_DEMO
#include "d/dolzel.h"
#endif
#include "SSystem/SComponent/c_bg_w.h"
#include "SSystem/SComponent/c_bg_s_gnd_chk.h"
#include "SSystem/SComponent/c_bg_s_lin_chk.h"
@@ -16,10 +19,6 @@
#include "dolphin/mtx/mtxvec.h"
#include "dolphin/types.h"
#if VERSION == VERSION_DEMO
#pragma nosyminline on
#endif
/* 80247500-8024754C .text ASSERT_SOLDHEAP__Fv */
void ASSERT_SOLDHEAP() {
if (JKRHeap::sCurrentHeap->getHeapType() != 'SLID')
+3 -4
View File
@@ -3,13 +3,12 @@
// Translation Unit: c_cc_s.cpp
//
#if VERSION == VERSION_DEMO
#include "d/dolzel.h"
#endif
#include "SSystem/SComponent/c_cc_s.h"
#include "JSystem/JUtility/JUTAssert.h"
#if VERSION == VERSION_DEMO
#pragma nosyminline on
#endif
#define CHECK_FLOAT_CLASS(line, x) JUT_ASSERT(line, !(fpclassify(x) == 1));
#define CHECK_FLOAT_RANGE(line, x) JUT_ASSERT(line, -1.0e32f < x && x < 1.0e32f);
#define CHECK_VEC3_RANGE(line, v) JUT_ASSERT(line, -1.0e32f < v.x && v.x < 1.0e32f && -1.0e32f < v.y && v.y < 1.0e32f && -1.0e32f < v.z && v.z < 1.0e32f)