demo matches for some grid funcs

This commit is contained in:
LagoLunatic
2026-09-09 13:35:22 -04:00
parent 01edd8c27a
commit 99662e663f
5 changed files with 171 additions and 167 deletions
+3 -3
View File
@@ -214,9 +214,9 @@ public:
J3DTexture* getTexture() { return mpTexture; }
virtual ~J3DMatPacket();
virtual int entry(J3DDrawBuffer* param_1) {
J3DDrawBuffer::sortFunc func = J3DDrawBuffer::sortFuncTable[param_1->mSortType];
return (param_1->*func)(this);
virtual int entry(J3DDrawBuffer* pBuffer) {
J3DDrawBuffer::sortFunc func = J3DDrawBuffer::sortFuncTable[pBuffer->getSortMode()];
return (pBuffer->*func)(this);
}
virtual void draw();
virtual bool isSame(J3DMatPacket*) const;