DS GX: Allow palette base to be adjusted in the middle of a polygon

This commit is contained in:
Vicki Pfau 2017-03-23 21:01:20 -07:00
parent 823c720e1f
commit 69f21e1fb4
1 changed files with 1 additions and 0 deletions

View File

@ -1191,6 +1191,7 @@ static void _fifoRun(struct mTiming* timing, void* context, uint32_t cyclesLate)
gx->nextPoly.palBase |= entry.params[1] << 8;
gx->nextPoly.palBase |= entry.params[2] << 16;
gx->nextPoly.palBase |= entry.params[3] << 24;
gx->currentPoly.palBase = gx->nextPoly.palBase;
break;
case DS_GX_CMD_BEGIN_VTXS:
gx->vertexMode = entry.params[0] & 3;