mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-31 00:45:24 -04:00
Fix broken J3DTexture assert (#3111)
This commit is contained in:
committed by
GitHub
parent
af7ab981e6
commit
35890e5880
@@ -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