summaryrefslogtreecommitdiff
path: root/src/JSystem/J3DGraphBase/J3DTexture.cpp
diff options
context:
space:
mode:
authorLagoLunatic <LagoLunatic@users.noreply.github.com>2025-12-26 19:20:21 -0500
committerGitHub <noreply@github.com>2025-12-26 16:20:21 -0800
commit09280ae00bf6e457aa4694dbcb3f8388f702f3b9 (patch)
tree05a1146271664c2d81756eaa162f11b4823ae1d0 /src/JSystem/J3DGraphBase/J3DTexture.cpp
parent4ebf9fac9f21ffb7a0c9f33317001e83e82a39ac (diff)
Fix optimization flag for Shield (#3004)
* Fix optimization flag for Shield * Minor debug work * Fix NULL asserts
Diffstat (limited to 'src/JSystem/J3DGraphBase/J3DTexture.cpp')
-rw-r--r--src/JSystem/J3DGraphBase/J3DTexture.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/JSystem/J3DGraphBase/J3DTexture.cpp b/src/JSystem/J3DGraphBase/J3DTexture.cpp
index 60c0590222..70d9a69031 100644
--- a/src/JSystem/J3DGraphBase/J3DTexture.cpp
+++ b/src/JSystem/J3DGraphBase/J3DTexture.cpp
@@ -49,7 +49,7 @@ void J3DTexture::addResTIMG(u16 newNum, const ResTIMG* newRes) {
if (newNum == 0)
return;
- J3D_ASSERT_NULLPTR(105, newRes != 0);
+ J3D_ASSERT_NULLPTR(105, newRes != NULL);
u16 oldNum = mNum;
ResTIMG* oldRes = mpRes;