Minor JSystem/Z2Audio fixes (#2650)

This commit is contained in:
Max Roncace
2025-09-12 02:39:23 -04:00
committed by GitHub
parent 93d3b2af3b
commit 41315ee2ce
11 changed files with 95 additions and 32 deletions
+1
View File
@@ -773,6 +773,7 @@ public:
u32 getTexGenNum() const { return mTexGenNum; }
void setTexGenNum(u32 num) { mTexGenNum = num; }
void setTexCoord(u32 i, J2DTexCoord coord) { mTexGenCoord[i] = coord; }
void setTexCoord(u32 i, const J2DTexCoord* coord) { mTexGenCoord[i] = *coord; }
void setTexMtx(u32 i, J2DTexMtx* mtx) { mTexMtx[i] = mtx; }
J2DTexMtx& getTexMtx(u32 i) { return *mTexMtx[i]; }
J2DTexCoord& getTexCoord(u32 i) { return mTexGenCoord[i]; }
+1 -2
View File
@@ -21,7 +21,7 @@ class JKRSolidHeap;
/**
* @ingroup jsystem-jaudio
*
*
*/
class JAUSection : public JKRDisposer, protected JSULink<JAUSection> {
public:
@@ -102,7 +102,6 @@ public:
/* 802A60AC */ bool newDynamicSeqBlock(u32);
/* 802A61D0 */ SeqDataReturnValue getSeqData(JAISoundID, JAISeqData*);
/* 802A6270 */ int releaseSeqData();
/* 802A6278 */ ~JAUSectionHeap() {}
JAISeqDataMgr* getSeqSeqDataMgr() { return this; }
JAISeqDataMgr* getSeSeqDataMgr() { return sectionHeapData_.seSeqDataMgr_; }
+1 -1
View File
@@ -7,4 +7,4 @@
#include "JSystem/JSystem.pch" // IWYU pragma: export
#endif
#endif // DOLZEL_PCH
#endif // JSYSTEM_H