Some TARGET_PC fixes

This commit is contained in:
Luke Street
2026-02-28 13:16:02 -07:00
parent 3d97a07488
commit f501960314
11 changed files with 87 additions and 58 deletions
+2 -1
View File
@@ -5,8 +5,9 @@
#include "SSystem/SComponent/c_cc_s.h"
#include "JSystem/JUtility/JUTAssert.h"
#include <cmath>
#define CHECK_FLOAT_CLASS(line, x) JUT_ASSERT(line, !isnan(x));
#define CHECK_FLOAT_CLASS(line, x) JUT_ASSERT(line, !std::isnan(x));
#define CHECK_FLOAT_RANGE(line, x) JUT_ASSERT(line, -1.0e32f < x && x < 1.0e32f);
cCcS::cCcS() {}