diff --git a/include/gfx.h b/include/gfx.h index 6a85fc96..314497be 100644 --- a/include/gfx.h +++ b/include/gfx.h @@ -310,10 +310,16 @@ typedef enum SetupDL { /* 0x55 */ SETUPDL_85, /* 0x56 */ SETUPDL_86, /* 0x57 */ SETUPDL_87, - /* 0x58 */ SETUPDL_MAX + SETUPDL_75_POINT, + SETUPDL_76_POINT, + SETUPDL_77_POINT, + SETUPDL_78_POINT, + SETUPDL_81_POINT, + SETUPDL_83_POINT, + SETUPDL_85_POINT } SetupDL; -extern Gfx gRcpSetupDLs[SETUPDL_MAX][9]; // 0x800D31B0 +extern Gfx gRcpSetupDLs[][9]; // 0x800D31B0 extern u8 D_80178580[]; extern void* D_80178710; diff --git a/src/engine/fox_display.c b/src/engine/fox_display.c index b3bc29f5..8a255b01 100644 --- a/src/engine/fox_display.c +++ b/src/engine/fox_display.c @@ -139,7 +139,7 @@ void Display_DrawHelpAlert(void) { switch (sp7C) { case false: - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); gDPSetPrimColor(gMasterDisp++, 0x00, 0x00, 255, 255, 0, 255); if (sp78 < 0.0f) { Graphics_DisplaySmallText(43 - 19, 106, 1.0f, 1.0f, "HELP!!"); @@ -149,7 +149,7 @@ void Display_DrawHelpAlert(void) { break; case true: - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); gDPSetPrimColor(gMasterDisp++, 0x00, 0x00, 255, 255, 0, 255); Graphics_DisplaySmallText(43 - 19, 106, 1.0f, 1.0f, "HELP!!"); Graphics_DisplaySmallText(SCREEN_WIDTH - 43 - 19, 106, 1.0f, 1.0f, "HELP!!"); diff --git a/src/engine/fox_game.c b/src/engine/fox_game.c index 5a08d025..7cb3739a 100644 --- a/src/engine/fox_game.c +++ b/src/engine/fox_game.c @@ -398,7 +398,7 @@ void Game_Update(void) { break; case GSTATE_SHOW_LOGO: - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); gDPSetPrimColor(gMasterDisp++, 0x00, 0x00, 255, 255, 255, 255); Lib_TextureRect_IA8(&gMasterDisp, gNintendoLogo, 128, 74, 100.0f, 86.0f, 1.0f, 1.0f); gGameState++; @@ -418,7 +418,7 @@ void Game_Update(void) { Timer_CreateTask(MSEC_TO_CYCLES(1000), Timer_Increment, (s32*) &gGameState, 1); /* fallthrough */ case GSTATE_LOGO_WAIT: - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); gDPSetPrimColor(gMasterDisp++, 0x00, 0x00, 255, 255, 255, 255); Lib_TextureRect_IA8(&gMasterDisp, gNintendoLogo, 128, 74, 100.0f, 86.0f, 1.0f, 1.0f); break; diff --git a/src/engine/fox_hud.c b/src/engine/fox_hud.c index d27408e8..bcf1b4bc 100644 --- a/src/engine/fox_hud.c +++ b/src/engine/fox_hud.c @@ -126,7 +126,7 @@ void HUD_LivesCount1_Draw(f32 xPos, f32 yPos, s32 lifeCount) { s32 maxLives; s32 digits; - RCP_SetupDL(&gMasterDisp, SETUPDL_78); + RCP_SetupDL(&gMasterDisp, SETUPDL_78_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); player = &gPlayer[0]; @@ -154,7 +154,7 @@ void HUD_LivesCount1_Draw(f32 xPos, f32 yPos, s32 lifeCount) { xPos += 11.0f; yPos -= 1.0f; - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); if (lifeCount < 0) { @@ -222,9 +222,10 @@ void TextureRect_CI8_2(Gfx** gfxP, u8* texture, u16* palette, u32 tWidth, u32 tH gDPLoadTLUT((*gfxP)++, 256, 256, palette); gDPLoadTextureBlock((*gfxP)++, texture, G_IM_FMT_CI, G_IM_SIZ_8b, tWidth, tHeight, 0, G_TX_NOMIRROR, G_TX_NOMIRROR, G_TX_NOMASK, G_TX_NOMASK, G_TX_NOLOD, G_TX_NOLOD); - gSPWideTextureRectangle((*gfxP)++, (s32) (xPos * 4.0f), (s32) (yPos * 4.0f), (s32) ((xPos + (xWidth * xScale)) * 4.0f), - (s32) ((yPos + (yWidth * yScale)) * 4.0f), G_TX_RENDERTILE, 0 * 32, 0 * 32, - (s32) (1 / xScale * (32 * 32)), (s32) (1 / yScale * (32 * 32))); + gSPWideTextureRectangle((*gfxP)++, (s32) (xPos * 4.0f), (s32) (yPos * 4.0f), + (s32) ((xPos + (xWidth * xScale)) * 4.0f), (s32) ((yPos + (yWidth * yScale)) * 4.0f), + G_TX_RENDERTILE, 0 * 32, 0 * 32, (s32) (1 / xScale * (32 * 32)), + (s32) (1 / yScale * (32 * 32))); } void HUD_MsgWindowBg_Draw(f32 xPos, f32 yPos, f32 xScale, f32 yScale) { @@ -303,7 +304,7 @@ void HUD_BoostGaugeCool_Draw(f32 xPos, f32 yPos, f32 xScale, f32 yScale) { } } -void HUD_MatrixTranslateCoord(f32* transX, f32* transY){ +void HUD_MatrixTranslateCoord(f32* transX, f32* transY) { *transX = OTRGetRectDimensionFromLeftEdge(*transX) - (SCREEN_WIDTH / 2.0f); *transY = (SCREEN_HEIGHT / 2.0f) - *transY; } @@ -407,7 +408,8 @@ void HUD_GoldRings_Draw(void) { Matrix_Push(&gGfxMatrix); Matrix_Translate(gGfxMatrix, D_800D1AC4[i + 1], D_800D1AD8[i + 1], -100.0f, MTXF_NEW); Matrix_RotateZ(gGfxMatrix, M_DTOR * sGoldRingsFwork[0], MTXF_APPLY); - Matrix_Scale(gGfxMatrix, sGoldRingsFwork[i + 2], sGoldRingsFwork[i + 2], sGoldRingsFwork[i + 2], MTXF_APPLY); + Matrix_Scale(gGfxMatrix, sGoldRingsFwork[i + 2], sGoldRingsFwork[i + 2], sGoldRingsFwork[i + 2], + MTXF_APPLY); Matrix_Scale(gGfxMatrix, ringScale, ringScale, ringScale, MTXF_APPLY); Matrix_SetGfxMtx(&gMasterDisp); @@ -489,7 +491,7 @@ void HUD_TeamShields_Draw(f32 xPos, f32 yPos, s32 arg2) { if ((arg2 <= 0) && (arg2 != -2) && ((gPlayState == PLAY_PAUSE) || (gShowLevelClearStatusScreen == 1) || (gLevelStartStatusScreenTimer != 0))) { - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 0, 255); if ((arg2 == 0) && (gPlayer[0].state_1C8 == PLAYERSTATE_1C8_LEVEL_COMPLETE)) { Graphics_DisplaySmallText(xPos + (8.0f * xScale) + 4.0f, yPos + 2.0f, 1.0f, 1.0f, " OK "); @@ -498,7 +500,7 @@ void HUD_TeamShields_Draw(f32 xPos, f32 yPos, s32 arg2) { } } - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); HUD_ShieldGaugeEdgeLeft_Draw(xPos, yPos, xScale, 1.0f); HUD_ShieldGaugeEdgeRight_Draw(xPos + (7.0f * xScale) + (xScale * 6.0f) * 8.0f, yPos, 1.0f, 1.0f); @@ -604,7 +606,7 @@ void HUD_VenomTitleCard_Draw(void) { } if (i != 9) { - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); Lib_TextureRect_IA8(&gMasterDisp, sVenomTitleCardDLs[i], sVenomTitleCardWidths[i], 19, sVenomTitleCardWidths[i], @@ -673,7 +675,7 @@ void HUD_TitleCard_Draw(f32 x, f32 y) { break; } - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); if ((levelIdx != 14) && (levelIdx != 15)) { // LEVEL_KATINA || LEVEL_FORTUNA @@ -730,7 +732,7 @@ void HUD_Number_Draw(f32 xPos, f32 yPos, s32 k, f32 scale, bool skipLeadingZeroe } void HUD_MsgWindowBg_Draw2(f32 xPos, f32 yPos, f32 xScale, f32 yScale) { - RCP_SetupDL(&gMasterDisp, SETUPDL_78); + RCP_SetupDL(&gMasterDisp, SETUPDL_78_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 60, 60, 128, 96); gDPSetAlphaDither(gMasterDisp++, G_AD_DISABLE); Lib_TextureRect_CI8(&gMasterDisp, aMsgWindowBgTex, aMsgWindowBgTLUT, 24, 17, xPos, yPos, xScale, yScale); @@ -871,7 +873,7 @@ void HUD_DrawLevelClearScreen(void) { levelIdx = HUD_GetLevelIndex(); if (levelClearState != LEVEL_CLEAR_STATE_0) { - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); x = 98.0f; y = 64.0f; @@ -924,9 +926,7 @@ void HUD_LivesCount2_Draw(f32 x, f32 y, s32 number) { s32 i; s32 form; - x = OTRGetDimensionFromRightEdge(x); - - RCP_SetupDL(&gMasterDisp, SETUPDL_78); + RCP_SetupDL(&gMasterDisp, SETUPDL_78_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); form = FORM_ARWING; @@ -968,6 +968,12 @@ void HUD_LivesCount2_Draw(f32 x, f32 y, s32 number) { } x2 += (2 - i) * 4; + if (gShowLevelClearStatusScreen == 0) { + x0 = OTRGetDimensionFromRightEdge(x0); + x1 = OTRGetDimensionFromRightEdge(x1); + x2 = OTRGetDimensionFromRightEdge(x2); + } + Lib_TextureRect_CI4(&gMasterDisp, sLivesCounterTexs[form], sLivesCounterTLUTs[form], 16, 16, x0, y0, 1.0f, 1.0f); Lib_TextureRect_CI4(&gMasterDisp, aXTex, aXTLUT, 16, 7, x1, y1, 1.0f, 1.0f); @@ -1009,11 +1015,11 @@ void HUD_TeammateStatus_Draw(void) { for (j = 0; j < 3; j++) { HUD_MsgWindowBg_Draw2(x[j][0] - 6.0f, y[j][1] - 1.0f, 2.4f, 0.7f); - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); Lib_TextureRect_IA8(&gMasterDisp, sText[j], sTextWidth[j], sTextHeght[j], x[j][1], y[j][1], 1.0f, 1.0f); - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); shield = gTeamShields[3 - j]; if (shield <= 0) { @@ -1220,10 +1226,10 @@ void HUD_LevelClearStatusScreen_Draw(void) { } x4 += (4 - i) * 8; - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 90, 160, 200, 255); - HUD_Number_Draw(24.0f, 30.0f + 3.0f, D_801617C0[5], 1.0f, false, 999); + HUD_Number_Draw(OTRGetDimensionFromLeftEdge(24.0f), 30.0f + 3.0f, D_801617C0[5], 1.0f, false, 999); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); Lib_TextureRect_IA8(&gMasterDisp, aTextEnemiesDown, 64, 25, x0, y0 + 4.0f, 1.0f, 1.0f); @@ -1238,7 +1244,7 @@ void HUD_LevelClearStatusScreen_Draw(void) { HUD_LivesCount2_Draw(232.0f, 90.0f, D_801617C0[3]); } - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); Lib_TextureRect_IA8(&gMasterDisp, aTextStatusOfTeam, 120, 12, x6 - 8.0f, y6 + 10.0f, 1.0f, 1.0f); @@ -1652,7 +1658,7 @@ void HUD_PauseScreen_Update(void) { break; } - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); Lib_TextureRect_IA8(&gMasterDisp, sLevelTitleCard[j].titleCardTex, sLevelTitleCard[j].titleCardWidth, @@ -1660,7 +1666,7 @@ void HUD_PauseScreen_Update(void) { HUD_MsgWindowBg_Draw2(x1 - 10.0f, y0 - 4.0f, 4.7f, 2.8f); - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); if (sPauseScreenIwork[1] == 0) { temp = (sPauseScreenTimer[0] % 20); @@ -2206,7 +2212,7 @@ s32 ActorMissileSeek_ModeCheck(ActorMissileSeekMode mode) { void HUD_RadioCharacterName_Draw(void) { if (gGameState == GSTATE_PLAY) { - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 0, 255); switch ((s32) gRadioMsgRadioId) { @@ -2297,7 +2303,7 @@ void HUD_IncomingMsg_Draw(void) { f32 xPos = 142.0f; f32 yPos = 18.0f; - RCP_SetupDL(&gMasterDisp, SETUPDL_78); + RCP_SetupDL(&gMasterDisp, SETUPDL_78_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); switch (D_80161790 / 2) { @@ -2392,14 +2398,12 @@ void HUD_PlayerShieldGauge_Update(void) { } void HUD_PlayerShieldGauge_Draw(f32 x, f32 y) { - // gEXSetRectAlign(gMasterDisp++, G_EX_ORIGIN_LEFT, G_EX_ORIGIN_LEFT, 0, 0, 0, 0); - x = OTRGetDimensionFromLeftEdge(x); - RCP_SetupDL(&gMasterDisp, SETUPDL_75); + RCP_SetupDL(&gMasterDisp, SETUPDL_75_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); HUD_ShieldGaugeBars_Draw(x + 8.0f, y + 2.0f, D_801617A8, 1.0f, D_801617AC); - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, D_800D1EB4, D_800D1EB8, D_800D1EBC, 255); HUD_ShieldGaugeEdgeLeft_Draw(x, y, 1.0f, 1.0f); HUD_ShieldGaugeEdgeRight_Draw(x + 7.0f + (D_801617A8 * 6.0f * 8.0f), y, 1.0f, 1.0f); @@ -2881,7 +2885,7 @@ void HUD_KillCountStars_Update(void) { j = gVsKills[gPlayerNum][i]; - RCP_SetupDL(&gMasterDisp, SETUPDL_77); + RCP_SetupDL(&gMasterDisp, SETUPDL_77_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); gDPSetEnvColor(gMasterDisp++, r[j], g[j], b[j], 0); @@ -2916,7 +2920,7 @@ void HUD_VsModePortrait_Draw(void) { f32 faceXpos[] = { 113.0f, 273.0f, 113.0f, 273.0f }; f32 faceYpos[] = { 79.0f, 79.0f, 199.0f, 199.0f }; - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); HUD_VsModePortraitTex_Draw(faceXpos[gPlayerNum], faceYpos[gPlayerNum], 0.54f, gPlayerNum); } @@ -2926,12 +2930,12 @@ void HUD_VS_ShieldGauge_Draw(void) { f32 D_800D20F8[] = { 78.0f, 78.0f, 198.0f, 198.0f }; Math_SmoothStepToF(&D_800D19E0[gPlayerNum], gPlayer[gPlayerNum].shields * (1.0f / 255.0f), 0.3f, 10.0f, 0.01f); - RCP_SetupDL(&gMasterDisp, SETUPDL_78); + RCP_SetupDL(&gMasterDisp, SETUPDL_78_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); HUD_VS_ShieldGaugeTex_Draw(D_800D20E8[gPlayerNum] + 3.0f, D_800D20F8[gPlayerNum] + 18.0f, 1.0f, 1.0f, D_800D19E0[gPlayerNum]); - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); @@ -2996,7 +3000,7 @@ void HUD_BoostGauge_Draw(f32 xPos, f32 yPos) { temp_t9 = D_800D19AC[playerNum]; - RCP_SetupDL(&gMasterDisp, SETUPDL_78); + RCP_SetupDL(&gMasterDisp, SETUPDL_78_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, temp_t9, temp_t9, temp_t9, 255); @@ -3008,7 +3012,7 @@ void HUD_BoostGauge_Draw(f32 xPos, f32 yPos) { HUD_BoostGaugeOverheat_Draw(boostGaugeXpos[playerNum] + temp + 1.0f, boostGaugeYpos[playerNum] + sp60, temp_fs0, 1.0f); } - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); HUD_BoostGaugeFrame_Draw(boostGaugeXpos[playerNum], boostGaugeYpos[playerNum], 1.0f, 1.0f); } @@ -3020,7 +3024,7 @@ void HUD_VS_PlayerNumber_Draw(void) { s32 playerNumberG[] = { 242, 30, 179, 30 }; s32 playerNumberB[] = { 12, 0, 67, 255 }; - RCP_SetupDL(&gMasterDisp, SETUPDL_78); + RCP_SetupDL(&gMasterDisp, SETUPDL_78_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, playerNumberR[gPlayerNum], playerNumberG[gPlayerNum], playerNumberB[gPlayerNum], 255); Graphics_DisplayHUDNumber(playerNumberXpos[gPlayerNum], playerNumberYpos[gPlayerNum], gPlayerNum + 1); @@ -3050,7 +3054,7 @@ void HUD_VS_BombCount_Draw(void) { if (((sVsBombCountFlashTimer[gPlayerNum] & 2) != 0) || ((sVsBombCountFlashTimer[gPlayerNum] == 0) && (gBombCount[gPlayerNum] != 0))) { - RCP_SetupDL_78(); + gSPDisplayList(gMasterDisp++, gRcpSetupDLs[SETUPDL_78_POINT]); if (gBombCount[gPlayerNum] >= 2) { if (Math_SmoothStepToF(&D_800D21A4, D_800D21A0, 0.4f, 100.0f, 0.1f) == 0.0f) { if (D_800D21A0 == 255.0f) { @@ -3082,13 +3086,13 @@ void HUD_VS_DrawHUD(void) { } void HUD_VS_X_Draw(f32 xPos, f32 yPos, s32 r, s32 g, s32 b) { - RCP_SetupDL_78(); + gSPDisplayList(gMasterDisp++, gRcpSetupDLs[SETUPDL_78_POINT]); gDPSetPrimColor(gMasterDisp++, 0, 0, r, g, b, D_hud_80161708); Lib_TextureRect_CI4(&gMasterDisp, aXTex, aXTLUT, 16, 7, xPos, yPos, 1.0f, 1.0f); } void HUD_VS_LivesCount_Draw(f32 xPos, f32 yPos, s32 number, s32 r, s32 g, s32 b) { - RCP_SetupDL_78(); + gSPDisplayList(gMasterDisp++, gRcpSetupDLs[SETUPDL_78_POINT]); gDPSetPrimColor(gMasterDisp++, 0, 0, r, g, b, D_hud_80161708); if (number >= 10) { @@ -3127,12 +3131,12 @@ void HUD_DrawBossHealth(void) { temp2 = OTRGetDimensionFromLeftEdge(temp2); temp4 = OTRGetDimensionFromLeftEdge(temp4); - RCP_SetupDL(&gMasterDisp, SETUPDL_78); + RCP_SetupDL(&gMasterDisp, SETUPDL_78_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); Lib_TextureRect_CI4(&gMasterDisp, D_1011A40, D_1011AB0, 32, 7, temp2, temp3, 1.0f, 1.0f); f32 border = sp3C; border = OTRGetDimensionFromLeftEdge(border); - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); Lib_TextureRect_IA8(&gMasterDisp, D_1002040, 40, 12, border, temp1, 1.0f, 1.0f); if (sp3C >= 25.0f) { @@ -3140,12 +3144,12 @@ void HUD_DrawBossHealth(void) { } if ((D_801616C4 >= 0.1f) && (sp3C >= 25.0f)) { - RCP_SetupDL(&gMasterDisp, SETUPDL_78); + RCP_SetupDL(&gMasterDisp, SETUPDL_78_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); Lib_TextureRect_CI8(&gMasterDisp, D_10129C0, D_1013090, 16, 109, temp4, temp5, 1.0f, D_801616C4); } - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 0, 0, 0, 255); if (D_801616BC > 0.0f) { @@ -3196,12 +3200,12 @@ void HUD_DisplayCountdown(f32 xPos, f32 yPos, s32* countdown, f32 scale) { } if ((i % 2) != 0) { - RCP_SetupDL_78(); + gSPDisplayList(gMasterDisp++, gRcpSetupDLs[SETUPDL_78_POINT]); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); Lib_TextureRect_CI4(&gMasterDisp, D_1011E80, D_1011EC0, 16, 8, (var_fs0 * scale) + xPos, yPos, scale, scale); } else { - RCP_SetupDL_76(); + gSPDisplayList(gMasterDisp++, gRcpSetupDLs[SETUPDL_76_POINT]); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 0, 255); HUD_DisplaySmallNumber((var_fs0 * scale) + xPos, yPos, scale, var_s2); var_fs0 += 9.0f; @@ -3344,7 +3348,7 @@ void HUD_Hitpoints_Update(f32 xPos, f32 yPos) { b = 200; } } - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, r, g, b, 255); HUD_Hitpoints_Draw(xPos, yPos); } @@ -3482,7 +3486,7 @@ void HUD_BombCounter_Draw(f32 x, f32 y) { D_80161784 = 0.0f; } - RCP_SetupDL_78(); + gSPDisplayList(gMasterDisp++, gRcpSetupDLs[SETUPDL_78_POINT]); gDPSetPrimColor(gMasterDisp++, 0, 0, (s32) D_80161770, (s32) D_80161774, (s32) D_80161778, D_hud_80161708); if (gCurrentLevel == LEVEL_AQUAS) { @@ -3552,7 +3556,7 @@ void HUD_BombCounter_Draw(f32 x, f32 y) { break; case 6: - RCP_SetupDL(&gMasterDisp, SETUPDL_78); + RCP_SetupDL(&gMasterDisp, SETUPDL_78_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); Lib_TextureRect_CI4(&gMasterDisp, D_blue_marine_3000090, D_blue_marine_3000120, 32, 9, x + 1.0f, y, 1.0f, 1.0f); @@ -3593,6 +3597,7 @@ void HUD_Draw(void) { s32 i; s32 goldRings; bool medalStatus; + gDPSetTextureFilter(gMasterDisp++, G_TF_POINT); if (D_hud_80161730 == 0) { for (i = 0; i < 10; i++) { @@ -3701,6 +3706,7 @@ void HUD_Draw(void) { } HUD_RadioDamage(); HUD_PauseScreen_Update(); + gDPSetTextureFilter(gMasterDisp++, G_TF_BILERP); } void FoBase_Draw(Boss* boss) { diff --git a/src/engine/fox_radio.c b/src/engine/fox_radio.c index 3c0b3617..9cde4152 100644 --- a/src/engine/fox_radio.c +++ b/src/engine/fox_radio.c @@ -423,7 +423,7 @@ void func_radio_800BAAE8(void) { D_800D4A74 = -1.0f; } sp38 = gRadioPortraitScaleY * 20.0f * D_800D4A74; - RCP_SetupDL_76(); + gSPDisplayList(gMasterDisp++, gRcpSetupDLs[SETUPDL_76_POINT]); gDPSetPrimColor(gMasterDisp++, 0x00, 0x00, 255, 255, 255, 255); if (mirror) { @@ -700,7 +700,7 @@ void Radio_Draw(void) { if ((gTeamShields[idx] <= 0) && (gGameFrameCount & 4) && (gTeamShields[idx] != -2) && (gCurrentRadioPortrait != RCID_STATIC) && (gCurrentRadioPortrait != RCID_STATIC + 1) && (gCurrentRadioPortrait != RCID_1000)) { - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); gDPSetPrimColor(gMasterDisp++, 0x00, 0x00, 255, 255, 0, 255); Graphics_DisplaySmallText(31, 167, 1.0f, 1.0f, "DOWN"); HUD_TeamDownWrench_Draw(1); @@ -749,7 +749,7 @@ void Radio_Draw(void) { if ((gActors[idx].obj.status != OBJ_ACTIVE) && (gGameFrameCount & 4) && (gPlayer[0].state_1C8 == PLAYERSTATE_1C8_ACTIVE) && (gCurrentRadioPortrait != RCID_STATIC) && (gCurrentRadioPortrait != RCID_STATIC + 1) && (gCurrentRadioPortrait != RCID_1000)) { - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); gDPSetPrimColor(gMasterDisp++, 0x00, 0x00, 255, 255, 0, 255); Graphics_DisplaySmallText(31, 167, 1.0f, 1.0f, "DOWN"); } diff --git a/src/engine/fox_rcp_setup.c b/src/engine/fox_rcp_setup.c index d13ff44f..f6c06835 100644 --- a/src/engine/fox_rcp_setup.c +++ b/src/engine/fox_rcp_setup.c @@ -1229,7 +1229,7 @@ Gfx gRcpSetupDLs[][9] = { gsSPSetGeometryMode(0), gsSPSetOtherMode(G_SETOTHERMODE_L, G_MDSFT_ALPHACOMPARE, 3, G_AC_NONE | G_ZS_PIXEL), gsDPSetRenderMode(G_RM_XLU_SURF, G_RM_XLU_SURF2), - gsSPSetOtherModeHi(G_AD_PATTERN | G_CD_MAGICSQ | G_CK_NONE | G_TC_FILT | G_TF_BILERP | G_TT_RGBA16 | G_TL_TILE | + gsSPSetOtherModeHi(G_AD_PATTERN | G_CD_MAGICSQ | G_CK_NONE | G_TC_FILT | G_TF_POINT | G_TT_RGBA16 | G_TL_TILE | G_TD_CLAMP | G_TP_NONE | G_CYC_1CYCLE | G_PM_NPRIMITIVE), gsSPEndDisplayList(), }, @@ -1265,4 +1265,103 @@ Gfx gRcpSetupDLs[][9] = { G_TD_CLAMP | G_TP_PERSP | G_CYC_2CYCLE | G_PM_NPRIMITIVE), gsSPEndDisplayList(), }, + { + /* SETUPDL_75_POINT */ + gsDPPipeSync(), + gsSPClearGeometryMode(G_ZBUFFER | G_SHADE | G_CULL_BOTH | G_FOG | G_LIGHTING | G_TEXTURE_GEN | + G_TEXTURE_GEN_LINEAR | G_LOD | G_SHADING_SMOOTH), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPSetCombineMode(G_CC_MODULATEIDECALA_PRIM, G_CC_MODULATEIDECALA_PRIM), + gsSPSetGeometryMode(0), + gsSPSetOtherMode(G_SETOTHERMODE_L, G_MDSFT_ALPHACOMPARE, 3, G_AC_NONE | G_ZS_PIXEL), + gsDPSetRenderMode(G_RM_AA_OPA_SURF, G_RM_AA_OPA_SURF2), + gsSPSetOtherModeHi(G_AD_PATTERN | G_CD_MAGICSQ | G_CK_NONE | G_TC_FILT | G_TF_POINT | G_TT_RGBA16 | G_TL_TILE | + G_TD_CLAMP | G_TP_NONE | G_CYC_1CYCLE | G_PM_NPRIMITIVE), + gsSPEndDisplayList(), + }, + { + /* SETUPDL_76_POINT */ + gsDPPipeSync(), + gsSPClearGeometryMode(G_ZBUFFER | G_SHADE | G_CULL_BOTH | G_FOG | G_LIGHTING | G_TEXTURE_GEN | + G_TEXTURE_GEN_LINEAR | G_LOD | G_SHADING_SMOOTH), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPSetCombineMode(G_CC_MODULATEIA_PRIM, G_CC_MODULATEIA_PRIM), + gsSPSetGeometryMode(0), + gsSPSetOtherMode(G_SETOTHERMODE_L, G_MDSFT_ALPHACOMPARE, 3, G_AC_NONE | G_ZS_PIXEL), + gsDPSetRenderMode(G_RM_XLU_SURF, G_RM_XLU_SURF2), + gsSPSetOtherModeHi(G_AD_PATTERN | G_CD_MAGICSQ | G_CK_NONE | G_TC_FILT | G_TF_POINT | G_TT_NONE | G_TL_TILE | + G_TD_CLAMP | G_TP_NONE | G_CYC_1CYCLE | G_PM_NPRIMITIVE), + gsSPEndDisplayList(), + }, + { + /* SETUPDL_77_POINT */ + gsDPPipeSync(), + gsSPClearGeometryMode(G_ZBUFFER | G_SHADE | G_CULL_BOTH | G_FOG | G_LIGHTING | G_TEXTURE_GEN | + G_TEXTURE_GEN_LINEAR | G_LOD | G_SHADING_SMOOTH), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPSetCombineLERP(PRIMITIVE, ENVIRONMENT, TEXEL0, ENVIRONMENT, PRIMITIVE, ENVIRONMENT, TEXEL0, ENVIRONMENT, + PRIMITIVE, ENVIRONMENT, TEXEL0, ENVIRONMENT, PRIMITIVE, ENVIRONMENT, TEXEL0, ENVIRONMENT), + gsSPSetGeometryMode(0), + gsSPSetOtherMode(G_SETOTHERMODE_L, G_MDSFT_ALPHACOMPARE, 3, G_AC_NONE | G_ZS_PIXEL), + gsDPSetRenderMode(G_RM_XLU_SURF, G_RM_XLU_SURF2), + gsSPSetOtherModeHi(G_AD_PATTERN | G_CD_MAGICSQ | G_CK_NONE | G_TC_FILT | G_TF_POINT | G_TT_NONE | G_TL_TILE | + G_TD_CLAMP | G_TP_NONE | G_CYC_1CYCLE | G_PM_NPRIMITIVE), + gsSPEndDisplayList(), + }, + { + /* SETUPDL_78_POINT */ + gsDPPipeSync(), + gsSPClearGeometryMode(G_ZBUFFER | G_SHADE | G_CULL_BOTH | G_FOG | G_LIGHTING | G_TEXTURE_GEN | + G_TEXTURE_GEN_LINEAR | G_LOD | G_SHADING_SMOOTH), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPSetCombineMode(G_CC_MODULATEIA_PRIM, G_CC_MODULATEIA_PRIM), + gsSPSetGeometryMode(0), + gsSPSetOtherMode(G_SETOTHERMODE_L, G_MDSFT_ALPHACOMPARE, 3, G_AC_NONE | G_ZS_PIXEL), + gsDPSetRenderMode(G_RM_XLU_SURF, G_RM_XLU_SURF2), + gsSPSetOtherModeHi(G_AD_PATTERN | G_CD_MAGICSQ | G_CK_NONE | G_TC_FILT | G_TF_POINT | G_TT_RGBA16 | G_TL_TILE | + G_TD_CLAMP | G_TP_NONE | G_CYC_1CYCLE | G_PM_NPRIMITIVE), + gsSPEndDisplayList(), + }, + { + /* SETUPDL_81_POINT */ + gsDPPipeSync(), + gsSPClearGeometryMode(G_ZBUFFER | G_SHADE | G_CULL_BOTH | G_FOG | G_LIGHTING | G_TEXTURE_GEN | + G_TEXTURE_GEN_LINEAR | G_LOD | G_SHADING_SMOOTH), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPSetCombineMode(G_CC_MODULATEIDECALA_PRIM, G_CC_MODULATEIDECALA_PRIM), + gsSPSetGeometryMode(0), + gsSPSetOtherMode(G_SETOTHERMODE_L, G_MDSFT_ALPHACOMPARE, 3, G_AC_NONE | G_ZS_PIXEL), + gsDPSetRenderMode(G_RM_XLU_SURF, G_RM_XLU_SURF2), + gsSPSetOtherModeHi(G_AD_PATTERN | G_CD_MAGICSQ | G_CK_NONE | G_TC_FILT | G_TF_POINT | G_TT_RGBA16 | G_TL_TILE | + G_TD_CLAMP | G_TP_NONE | G_CYC_1CYCLE | G_PM_NPRIMITIVE), + gsSPEndDisplayList(), + }, + { + /* SETUPDL_83_POINT */ + gsDPPipeSync(), + gsSPClearGeometryMode(G_ZBUFFER | G_SHADE | G_CULL_BOTH | G_FOG | G_LIGHTING | G_TEXTURE_GEN | + G_TEXTURE_GEN_LINEAR | G_LOD | G_SHADING_SMOOTH), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPSetCombineMode(G_CC_MODULATEIA_PRIM, G_CC_MODULATEIA_PRIM), + gsSPSetGeometryMode(0), + gsSPSetOtherMode(G_SETOTHERMODE_L, G_MDSFT_ALPHACOMPARE, 3, G_AC_NONE | G_ZS_PIXEL), + gsDPSetRenderMode(G_RM_XLU_SURF, G_RM_XLU_SURF2), + gsSPSetOtherModeHi(G_AD_PATTERN | G_CD_MAGICSQ | G_CK_NONE | G_TC_FILT | G_TF_POINT | G_TT_NONE | G_TL_TILE | + G_TD_CLAMP | G_TP_NONE | G_CYC_1CYCLE | G_PM_NPRIMITIVE), + gsSPEndDisplayList(), + }, + { + /* SETUPDL_85_POINT */ + gsDPPipeSync(), + gsSPClearGeometryMode(G_ZBUFFER | G_SHADE | G_CULL_BOTH | G_FOG | G_LIGHTING | G_TEXTURE_GEN | + G_TEXTURE_GEN_LINEAR | G_LOD | G_SHADING_SMOOTH), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPSetCombineMode(G_CC_MODULATEIA_PRIM, G_CC_MODULATEIA_PRIM), + gsSPSetGeometryMode(0), + gsSPSetOtherMode(G_SETOTHERMODE_L, G_MDSFT_ALPHACOMPARE, 3, G_AC_NONE | G_ZS_PIXEL), + gsDPSetRenderMode(G_RM_XLU_SURF, G_RM_XLU_SURF2), + gsSPSetOtherModeHi(G_AD_PATTERN | G_CD_MAGICSQ | G_CK_NONE | G_TC_FILT | G_TF_POINT | G_TT_RGBA16 | G_TL_TILE | + G_TD_CLAMP | G_TP_NONE | G_CYC_1CYCLE | G_PM_NPRIMITIVE), + gsSPEndDisplayList(), + }, }; diff --git a/src/mods/levelselect.c b/src/mods/levelselect.c index 5d058ffa..cd418711 100644 --- a/src/mods/levelselect.c +++ b/src/mods/levelselect.c @@ -37,6 +37,10 @@ void Map_LevelSelect(void) { s32 nextPlanetId; OSContPad* contPress = &gControllerPress[gMainController]; + if ((sMapState != MAP_IDLE) && (sMapState != MAP_ZOOM_PLANET)) { + return; + } + if (contPress->button & L_JPAD) { mission--; if (mission < 0) { @@ -81,7 +85,7 @@ void Map_LevelSelect(void) { /* Draw */ if ((sCurrentPlanetId >= 0) && (sCurrentPlanetId < PLANET_MAX)) { - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 0, 255); Graphics_DisplaySmallText(20, y, 1.0f, 1.0f, "PLANET:"); diff --git a/src/mods/sfxjukebox.c b/src/mods/sfxjukebox.c index a3e4d376..6329385b 100644 --- a/src/mods/sfxjukebox.c +++ b/src/mods/sfxjukebox.c @@ -194,7 +194,7 @@ void Jukebox_Update(void) { /* Draw */ - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 0, 255); Graphics_Printf("SFX ID: %08X", sfx); diff --git a/src/mods/sfxjukebox2.c b/src/mods/sfxjukebox2.c index d1f6b695..5901fdc1 100644 --- a/src/mods/sfxjukebox2.c +++ b/src/mods/sfxjukebox2.c @@ -197,7 +197,7 @@ void Jukebox_Update(void) { /* Draw */ - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 0, 255); Graphics_Printf("SFX ID: %08X", sfx); diff --git a/src/mods/spawner.c b/src/mods/spawner.c index 95131703..f7e4a219 100644 --- a/src/mods/spawner.c +++ b/src/mods/spawner.c @@ -397,7 +397,7 @@ void Spawner(void) { gPlayer[0].baseSpeed = gArwingSpeed; } - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 0, 255); /* Spawners */ diff --git a/src/overlays/ovl_ending/fox_end2.c b/src/overlays/ovl_ending/fox_end2.c index 3cbe9d79..1d3d37e2 100644 --- a/src/overlays/ovl_ending/fox_end2.c +++ b/src/overlays/ovl_ending/fox_end2.c @@ -59,7 +59,7 @@ void Ending_8018CE20(u32 arg0) { 130.0f, 1.0f, 1.0f); } else { xPos = (320 - Graphics_GetSmallTextWidth(D_ending_80192E74[i].unk_00)) / 2; - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); gDPSetTextureFilter(gMasterDisp++, G_TF_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 155, 155, alpha); Graphics_DisplaySmallText(xPos, D_ending_80192E74[i].unk_0E, 1.0f, 1.0f, diff --git a/src/overlays/ovl_menu/fox_map.c b/src/overlays/ovl_menu/fox_map.c index 2a40c0a2..cbb78afc 100644 --- a/src/overlays/ovl_menu/fox_map.c +++ b/src/overlays/ovl_menu/fox_map.c @@ -2178,14 +2178,14 @@ void Map_Prologue_Draw(void) { Map_PrologueArwing_Draw(); - RCP_SetupDL(&gMasterDisp, SETUPDL_81); + RCP_SetupDL(&gMasterDisp, SETUPDL_81_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 180, 180, 180, 255); // Prologue text Message_DisplayScrollingText(&gMasterDisp, gMsg_ID_1, sPrologueTextXpos, sPrologueTextYpos, 218, 70, Message_GetCharCount(gMsg_ID_1)); - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); // Vertical Fade Margins for prologue text @@ -2197,7 +2197,7 @@ void Map_Prologue_Draw(void) { Background_DrawPartialStarfield(71, 118); Background_DrawPartialStarfield(205, 239); - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, sPrologueCurrentTexAlpha); Lib_TextureRect_RGBA16(&gMasterDisp, sPrologueTextures[sPrologueTexIdx], 96, 52, 109.0f, 24.0f, 1.0f, 1.0f); @@ -2382,7 +2382,7 @@ void Map_LylatCard_Update(void) { void Map_LylatCard_Draw(void) { s32 i; - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, (s32) D_menu_801CEA9C); @@ -3841,7 +3841,7 @@ void Map_PathChange_DrawOptions(void) { } if (gGameFrameCount & mask) { // can't be != 0? - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, r[colorIndex], g[colorIndex], b[colorIndex], 255); Lib_TextureRect_IA8(&gMasterDisp, aMapProceedNextCourseTex, 96, 22, x + 11.0f, y + 3.0f, 1.0f, 1.0f); } @@ -5410,7 +5410,7 @@ void Map_TitleCards_Draw(void) { s32 i; s32 planetCardIdx = sMapCurPlanetCards[sCurrentPlanetId]; - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, (s32) sMapPlanetCardAlpha); @@ -5502,7 +5502,7 @@ void Map_801A9A8C(void) { break; } - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); if (CVarGetInteger("gLevelSelector", 0) && gMissionNumber == 6) { @@ -5547,7 +5547,7 @@ void Map_801A9DE8(void) { } void Map_TotalHits_Draw(void) { - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 0, 255); @@ -5613,7 +5613,7 @@ void Map_PathLineBox_Draw(s32 curMission) { PlanetId* ptr = &gMissionPlanet[0]; for (x = 0.0f, i = 0; i < 7; i++, x += 24.0f + x2, ptr++) { - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); if (i < 6) { r = g = b = 255; @@ -5660,7 +5660,7 @@ void Map_PathInfo_Draw(s32 missionIdx, f32 x, f32 y, s32 idx) { static s32 D_menu_801B6AE8[] = { 30, 179, 30 }; static s32 D_menu_801B6AF4[] = { 0, 67, 255 }; - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 0, 255); Graphics_DisplaySmallText(x + 12.0f - Graphics_GetSmallTextWidth(sPlanetNames[idx]) * 0.5f, y - 8.0f, 1.0f, 1.0f, @@ -5682,7 +5682,7 @@ void Map_PathInfo_Draw(s32 missionIdx, f32 x, f32 y, s32 idx) { x2 = 0.0f; for (i = 0; i < 3; i++, x2 += 9.0f) { if ((gMissionTeamStatus[missionIdx] & mask) != 0) { - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, D_menu_801B6ADC[i], D_menu_801B6AE8[i], D_menu_801B6AF4[i], 255); Graphics_DisplaySmallText((s32) x + x2 - 1.0f, (s32) y + 24.0f + 8.0f + 2.0f, 1.0f, 1.0f, D_menu_801B6AD0[i]); @@ -6108,7 +6108,7 @@ void Map_BriefingRadio_Draw(s32 arg0) { case 20: case 21: if (sTeamStatusAlpha != 0) { - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, sTeamStatusAlpha); xPos = 205.0f; yPos = 77.0f; @@ -6131,7 +6131,7 @@ void Map_BriefingRadio_Draw(s32 arg0) { break; case 0: - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 0, 255); if ((gGameFrameCount & 0x10) != 0) { Graphics_DisplaySmallText(sTeamStatusPos[i], 131 + 28, 1.0f, 1.0f, "OK !"); @@ -6144,7 +6144,7 @@ void Map_BriefingRadio_Draw(s32 arg0) { break; } - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, alpha[i]); Lib_TextureRect_RGBA16(&gMasterDisp, sRadioCharacterFaces[i], 28, 28, sTeamStatusPos[i], 131.0f, 1.0f, 1.0f); @@ -6859,7 +6859,7 @@ void Map_SetCamRot(f32 camAtX, f32 camAtY, f32 camAtZ, f32* camEyeX, f32* camEye } void Map_RemainingLives_Draw(s32 xPos, s32 yPos, s32 number) { - RCP_SetupDL(&gMasterDisp, SETUPDL_85); + RCP_SetupDL(&gMasterDisp, SETUPDL_85_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); Lib_TextureRect_CI4(&gMasterDisp, aMapArwingIconTex, aMapArwingIconTLUT, 16, 16, xPos, yPos, 1.0f, 1.0f); @@ -6867,7 +6867,7 @@ void Map_RemainingLives_Draw(s32 xPos, s32 yPos, s32 number) { gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 0, 255); Lib_TextureRect_CI4(&gMasterDisp, aMapXTex, aMapXTLUT, 16, 7, xPos + 18.0f, yPos + 9.0f, 1.0f, 1.0f); - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 0, 255); if (number >= 10) { diff --git a/src/overlays/ovl_menu/fox_option.c b/src/overlays/ovl_menu/fox_option.c index b5295902..b3decb9e 100644 --- a/src/overlays/ovl_menu/fox_option.c +++ b/src/overlays/ovl_menu/fox_option.c @@ -1467,12 +1467,12 @@ void Option_Sound_Draw(void) { Option_Sound_Speaker_Draw(); - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); Lib_TextureRect_RGBA16(&gMasterDisp, aMapWhiteSquareTex, 8, 8, D_menu_801AEFA8[0], D_menu_801AEFD4[0], D_menu_801AF000, 0.2f); - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); Lib_TextureRect_IA8(&gMasterDisp, D_OPT_8005CD0, 112, 13, D_menu_801AEFA8[1], D_menu_801AEFD4[1], 1.0f, 1.0f); @@ -1736,7 +1736,7 @@ void Option_ExpertSound_Draw(void) { if (!showJukebox) { #endif - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); @@ -1964,16 +1964,12 @@ void Option_Data_Draw(void) { Option_DrawMenuLabel(); - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); - for (i = 0; i < 2; i++) { - Lib_TextureRect_IA8(&gMasterDisp, D_OPT_80084B0 + (176 * 4 * i), 176, 4, D_menu_801AF094[0], - D_menu_801AF0AC[0] + (4.0f * i), 1.0f, 1.0f); - } - Lib_TextureRect_IA8(&gMasterDisp, D_OPT_80084B0 + 176 * 4 * 2, 176, 5, D_menu_801AF094[0], - D_menu_801AF0AC[0] + 8.0f, 1.0f, 1.0f); + Lib_TextureRect_IA8(&gMasterDisp, D_OPT_80084B0, 176, 13, D_menu_801AF094[0], D_menu_801AF0AC[0] + (4.0f * i), 1.0f, + 1.0f); if (D_menu_801B91CC < 2) { Lib_TextureRect_IA8_MirX(&gMasterDisp, aArrowTex, 8, 8, D_menu_801AF084[D_menu_801B91C0], 140.0f, 1.0f, 1.0f); @@ -2011,12 +2007,8 @@ void Option_Data_Draw(void) { case 0: gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); { - for (i = 0; i < 9; i++) { - Lib_TextureRect_IA8(&gMasterDisp, D_OPT_8008DA0 + (160 * 2 * i), 160, 2, D_menu_801AF094[3], - D_menu_801AF0AC[3] + (2.0f * i), 1.0f, 1.0f); - } - Lib_TextureRect_IA8(&gMasterDisp, D_OPT_8008DA0 + 160 * 2 * 9, 160, 1, D_menu_801AF094[3], - D_menu_801AF0AC[3] + 18.0f, 1.0f, 1.0f); + Lib_TextureRect_IA8(&gMasterDisp, D_OPT_8008DA0, 160, 19, D_menu_801AF094[3], D_menu_801AF0AC[3], 1.0f, + 1.0f); } break; @@ -2024,22 +2016,16 @@ void Option_Data_Draw(void) { case 2: gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); { - for (i = 0; i < 20; i++) { - Lib_TextureRect_IA8(&gMasterDisp, D_OPT_8009CE0 + (160 * 2 * i), 160, 2, D_menu_801AF094[4], - D_menu_801AF0AC[4] + (2.0f * i), 1.0f, 1.0f); - } - Lib_TextureRect_IA8(&gMasterDisp, D_OPT_8009CE0 + 160 * 2 * 20, 160, 1, D_menu_801AF094[4], - D_menu_801AF0AC[4] + 40.0f, 1.0f, 1.0f); + Lib_TextureRect_IA8(&gMasterDisp, D_OPT_8009CE0, 160, 41, D_menu_801AF094[4], D_menu_801AF0AC[4], 1.0f, + 1.0f); } break; case 3: gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 32, 32, 255); - Lib_TextureRect_IA8(&gMasterDisp, D_OPT_800B680, 144, 28, D_menu_801AF094[5], D_menu_801AF0AC[5], 1.0f, + Lib_TextureRect_IA8(&gMasterDisp, D_OPT_800B680, 144, 41, D_menu_801AF094[5], D_menu_801AF0AC[5], 1.0f, 1.0f); - Lib_TextureRect_IA8(&gMasterDisp, D_OPT_800B680 + 4032, 144, 13, D_menu_801AF094[5], - D_menu_801AF0AC[5] + 28.0f, 1.0f, 1.0f); break; } @@ -2168,14 +2154,14 @@ void Option_RankingMenu_Draw(void) { Option_RankingMenu2_Draw(); } else { Title_RankingData_Draw(); - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); Option_Color_FlashRed(&D_menu_801B93F0); colorGB = D_menu_801B93F0; gDPSetPrimColor(gMasterDisp++, 0, 0, 255, colorGB, colorGB, 255); Lib_TextureRect_IA8(&gMasterDisp, D_VS_MENU_7004010, 8, 8, 70.0f, (D_menu_801B93E4 * 17.0f) + 55.0f, 1.0f, 1.0f); } - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 0, 255); Graphics_DisplaySmallText(242, 215, 1.0f, 1.0f, "PUSH A"); } @@ -2265,7 +2251,7 @@ void Option_80197914(void) { } void Option_OrdinalNumbers_Draw(s32 ordinalType, s32 xPos, s32 yPos) { - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); if (ordinalType != 9) { @@ -2275,7 +2261,7 @@ void Option_OrdinalNumbers_Draw(s32 ordinalType, s32 xPos, s32 yPos) { Lib_TextureRect_IA8(&gMasterDisp, aLargeText_0, 16, 15, xPos, yPos - 25.0f, 1.0f, 1.0f); } - RCP_SetupDL(&gMasterDisp, SETUPDL_85); + RCP_SetupDL(&gMasterDisp, SETUPDL_85_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); switch (ordinalType) { @@ -2300,7 +2286,7 @@ void Option_OrdinalNumbers_Draw(s32 ordinalType, s32 xPos, s32 yPos) { void Option_RankingName_Draw(s32 rankIdx, s32 xPos, s32 yPos) { char rankName[4]; - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 0, 255); rankName[0] = gSaveFile.save.data.rankNameEntry[rankIdx][0] & 0xFF; @@ -2312,7 +2298,7 @@ void Option_RankingName_Draw(s32 rankIdx, s32 xPos, s32 yPos) { } void Option_RankingTotalHits_Draw(s32 rankIdx, s32 xPos, s32 yPos) { - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 60, 60, 255, 170); Lib_TextureRect_IA8(&gMasterDisp, aMapOptionBgTex, 24, 17, xPos, yPos, 3.17f, 1.05f); @@ -2329,7 +2315,7 @@ void Option_RankingTeamAlive_Draw(s32 rankIdx, s32 xPos, s32 yPos) { f32 xOffset; s32 i; - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); for (xOffset = 0.0f, i = 0; i < ARRAY_COUNT(sTeamAlivePrimR); i++, xOffset += 12.0f) { gDPSetPrimColor(gMasterDisp++, 0, 0, sTeamAlivePrimR[i], sTeamAlivePrimG[i], sTeamAlivePrimB[i], 255); @@ -2370,7 +2356,7 @@ void Option_RankingRouteFrame_Draw(s32 rankIdx, s32 routeIdx, f32 xPos, f32 yPos PlanetId end; if ((yPos > 30.0f) && (yPos < 200.0f)) { - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); if (routeIdx < 6) { r = g = b = 255; @@ -2428,7 +2414,7 @@ void Option_RankingTeamPresence_Draw(s32 rankIdx, s32 routeIdx, f32 xPos, f32 yP s32 i; if ((yPos > 12.0f) && (yPos < 154.0f)) { - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); teamAlive[0] = gSaveFile.save.data.stats[rankIdx][routeIdx].peppyAlive & 1; teamAlive[1] = gSaveFile.save.data.stats[rankIdx][routeIdx].slippyAlive & 1; @@ -2453,7 +2439,7 @@ void Option_RankingPlanetName_Draw(s32 rankIdx, s32 routeIdx, f32 xPos, f32 yPos planetIdx = gSaveFile.save.data.stats[rankIdx][routeIdx].planetId & 0xF; planetName = D_menu_801AEEAC[planetIdx]; - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 0, 255); textWidth = Graphics_GetSmallTextWidth(planetName) / 2.0f; Graphics_DisplaySmallText(xPos + 12.0f - textWidth, yPos - 8.0f, 1.0f, 1.0f, planetName); @@ -3452,7 +3438,7 @@ void Option_VsSelectionArrows_Draw(f32 xPos, f32 yPos, f32 offset, s32 r, s32 g, } void Option_AcceptCancel_Draw(void) { - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); Lib_TextureRect_IA8(&gMasterDisp, aAtoConfirmTex, 96, 10, 62.0f, 213.0f, 1.0f, 1.0f); Lib_TextureRect_IA8(&gMasterDisp, aBtoCancelTex, 96, 10, 166.0f, 213.0f, 1.0f, 1.0f); @@ -3634,28 +3620,28 @@ void Option_DrawCardLabel(OptionCardTexture tex) { if (!(tex.xScale <= 0.0f) && !(tex.yScale <= 0.0f)) { switch (tex.type) { case 1: - RCP_SetupDL(&gMasterDisp, SETUPDL_78); + RCP_SetupDL(&gMasterDisp, SETUPDL_78_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, tex.red, tex.green, tex.blue, tex.alpha); Lib_TextureRect_CI4(&gMasterDisp, tex.texture, tex.palette, tex.width, tex.height, tex.xPos, tex.yPos, tex.xScale, tex.yScale); break; case 2: - RCP_SetupDL(&gMasterDisp, SETUPDL_78); + RCP_SetupDL(&gMasterDisp, SETUPDL_78_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, tex.red, tex.green, tex.blue, tex.alpha); Lib_TextureRect_CI8(&gMasterDisp, tex.texture, tex.palette, tex.width, tex.height, tex.xPos, tex.yPos, tex.xScale, tex.yScale); break; case 0: - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, tex.red, tex.green, tex.blue, tex.alpha); Lib_TextureRect_IA8(&gMasterDisp, tex.texture, tex.width, tex.height, tex.xPos, tex.yPos, tex.xScale, tex.yScale); break; case 3: - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, tex.red, tex.green, tex.blue, tex.alpha); Lib_TextureRect_RGBA16(&gMasterDisp, tex.texture, tex.width, tex.height, tex.xPos, tex.yPos, tex.xScale, tex.yScale); @@ -4207,7 +4193,7 @@ void Option_NameEntry_Draw(void) { static f32 D_menu_801AF30C[6] = { 51.0f, 138.0f, 118.0f, 166.0f, 138.0f, 267.0f }; static f32 D_menu_801AF324[6] = { 29.0f, 49.0f, 145.0f, 155.0f, 87.0f, 127.0f }; - RCP_SetupDL(&gMasterDisp, SETUPDL_76); + RCP_SetupDL(&gMasterDisp, SETUPDL_76_POINT); if (gLastGameState == GSTATE_ENDING) { gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); diff --git a/src/overlays/ovl_menu/fox_title.c b/src/overlays/ovl_menu/fox_title.c index e0c54bb5..10095a81 100644 --- a/src/overlays/ovl_menu/fox_title.c +++ b/src/overlays/ovl_menu/fox_title.c @@ -419,7 +419,7 @@ void Title_Ranking_Draw(void) { u8* aTextKanjiCOMPLETE_Data = LOAD_ASSET_RAW(aTextKanjiCOMPLETE); // Ranking header - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 0, 255); Graphics_DisplaySmallText(xPos, yPos, 1.0f, 1.0f, sSTARFOX_RANKING); @@ -434,6 +434,8 @@ void Title_Ranking_Draw(void) { // This Kanji texture was used to draw a white line. Lib_TextureRect_IA8(&gMasterDisp, &aTextKanjiCOMPLETE_Data[288], 16, 2, 36, 32, 15.2f, 1.0f); + + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); Title_RankingData_Draw(); } @@ -442,7 +444,7 @@ void Title_RankingData_Draw(void) { s32 yPos; s32 i; - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 0, 255); @@ -2880,7 +2882,7 @@ void Title_Passage_Draw(void) { } void Title_StarfoxLogo_Draw(void) { - RCP_SetupDL(&gMasterDisp, 0x53); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); // LTodo: Validate this @@ -2900,7 +2902,7 @@ void Title_64Logo_Draw(void) { } void Title_CopyrightSymbol_Draw(void) { - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); Lib_TextureRect_IA8(&gMasterDisp, aTitleCopyrightTex, 16, 16, 234.0f, 20.0f, 1.0f, 1.0f); } @@ -2928,21 +2930,21 @@ void Title_PressStart_Draw(void) { if (gMainController < 0) { // No Controller background - RCP_SetupDL(&gMasterDisp, SETUPDL_85); + RCP_SetupDL(&gMasterDisp, SETUPDL_85_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 60, 60, 255, 200); Lib_TextureRect_CI8(&gMasterDisp, aNoControllerBgTex, aNoControllerBgTLUT, 32, 32, sNoControllerBgXpos, sNoControllerBgYpos, sNoControllerBgXscale, sNoControllerBgYscale); // No Controller - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, (s32) sTitleTextPrimCol, (s32) sTitleTextPrimCol, 255); Lib_TextureRect_IA8(&gMasterDisp, aTitleNoControllerTex, 176, 24, D_menu_801AE474, D_menu_801AE478, 1.0f, 1.0f); } else { // Press Start - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, (s32) sTitleTextPrimCol, (s32) sTitleTextPrimCol, 255); Lib_TextureRect_IA8(&gMasterDisp, aTitlePressStartTex, 120, 13, 101.0f, yPos, 1.0f, 1.0f); @@ -2953,7 +2955,7 @@ void Title_PressStart_Draw(void) { void Title_Copyright_Draw(void) { s32 i; - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); Lib_TextureRect_IA8(&gMasterDisp, a1997NintendoTex, 120, 12, 102.0f, 209.0f, 1.0f, 1.0f); @@ -2971,7 +2973,7 @@ void Title_TeamName_Draw(void) { temp_fs2 = D_menu_801AE47C[D_menu_801B8340]; temp = 210.0f; - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); @@ -3146,7 +3148,7 @@ void Title_Logos_Draw(void) { switch (sTitleLogoState) { case TITLE_LOGO_STARFOX_IN: - RCP_SetupDL(&gMasterDisp, SETUPDL_85); + RCP_SetupDL(&gMasterDisp, SETUPDL_85_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, (s32) sStarfoxLogoAlpha); Lib_TextureRect_CI4(&gMasterDisp, aIntroStarfoxLogoTex, aIntroStarfoxLogoTLUT, 256, 13, 90.0f, 110.0f, 1.0f, 1.0f); @@ -3155,7 +3157,7 @@ void Title_Logos_Draw(void) { break; case TITLE_LOGO_NINTENDO_64: - RCP_SetupDL(&gMasterDisp, 0x53); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, (s32) sStarfoxLogoAlpha); Lib_TextureRect_RGBA16(&gMasterDisp, aTitleN64LogoTex, 128, 88, D_menu_801B9070, D_menu_801B9074, D_menu_801B9078, D_menu_801B907C); @@ -3290,14 +3292,14 @@ void Title_TitleCard_Draw(void) { break; case TITLE_CARD_GREAT_FOX: - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); Lib_TextureRect_IA8(&gMasterDisp, aTitleGreatFoxCardTex, 144, 28, aTitleGreatFoxCardXpos, aTitleGreatFoxCardYpos, 1.0f, 1.0f); break; case TITLE_CARD_ARWING: - RCP_SetupDL(&gMasterDisp, SETUPDL_83); + RCP_SetupDL(&gMasterDisp, SETUPDL_83_POINT); gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 255, 255); Lib_TextureRect_IA8(&gMasterDisp, aTitleArwingCardTex, 112, 26, sTitleArwingCardXpos, sTitleArwingCardYpos,