DS GX: Allow adjusting texture params mid-polygon

This commit is contained in:
Vicki Pfau 2017-03-18 00:11:03 -07:00
parent a5b524e3e2
commit bd464ed123
1 changed files with 1 additions and 0 deletions

View File

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