Skip to content

Commit 08f9b06

Browse files
authored
Merge pull request #1488 from garrettjoecox/non-warp-song-render-fix
[#1434] Renders non-warp songs more consistently with warp songs
2 parents 1c3d7f9 + c2c6955 commit 08f9b06

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

soh/src/code/z_draw.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -827,12 +827,12 @@ void GetItem_DrawGenericMusicNote(GlobalContext* globalCtx, s16 drawId) {
827827

828828
OPEN_DISPS(globalCtx->state.gfxCtx);
829829

830-
gSPMatrix(POLY_OPA_DISP++, Matrix_NewMtx(globalCtx->state.gfxCtx, __FILE__, __LINE__), G_MTX_MODELVIEW | G_MTX_LOAD);
831-
gsDPSetGrayscaleColor(POLY_OPA_DISP++, colors[color_slot][0], colors[color_slot][1], colors[color_slot][2], 255);
832-
gsSPGrayscale(POLY_OPA_DISP++, true);
830+
gSPMatrix(POLY_XLU_DISP++, Matrix_NewMtx(globalCtx->state.gfxCtx, __FILE__, __LINE__), G_MTX_MODELVIEW | G_MTX_LOAD);
831+
gsDPSetGrayscaleColor(POLY_XLU_DISP++, colors[color_slot][0], colors[color_slot][1], colors[color_slot][2], 255);
832+
gsSPGrayscale(POLY_XLU_DISP++, true);
833833
func_80093D18(globalCtx->state.gfxCtx);
834-
gSPDisplayList(POLY_OPA_DISP++, sDrawItemTable[drawId].dlists[0]);
835-
gsSPGrayscale(POLY_OPA_DISP++, false);
834+
gSPDisplayList(POLY_XLU_DISP++, sDrawItemTable[drawId].dlists[0]);
835+
gsSPGrayscale(POLY_XLU_DISP++, false);
836836

837837
CLOSE_DISPS(globalCtx->state.gfxCtx);
838838
}

0 commit comments

Comments
 (0)