mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
Fix broken J3DTexture assert (#3111)
This commit is contained in:
committed by
GitHub
parent
f54661f878
commit
a096caa8de
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user