Fix broken J3DTexture assert (#3111)

This commit is contained in:
Pieter-Jan Briers
2026-02-25 23:06:37 +01:00
committed by GitHub
parent f54661f878
commit a096caa8de
+1 -1
View File
@@ -19,7 +19,7 @@ private:
public:
J3DTexture(u16 num, ResTIMG* res) : mNum(num), unk_0x2(0), mpRes(res) {
J3D_ASSERT_NULLPTR(52, res && num);
J3D_ASSERT_NULLPTR(52, res != NULL || num == 0);
}
void loadGX(u16, GXTexMapID) const;