diff options
| author | Sonic Dreamcaster <alejandro.asenjo88@gmail.com> | 2024-11-20 19:22:25 -0300 |
|---|---|---|
| committer | Sonic Dreamcaster <alejandro.asenjo88@gmail.com> | 2024-11-20 19:22:25 -0300 |
| commit | 3dda020f3abe4ce8cb4e5977d29700cd163d9c13 (patch) | |
| tree | 6fb1b059e5bf7567141d90b12612966b381e5190 /src/engine/fox_display.c | |
| parent | bc4e485d44f698359619158c46c3a1f9e193b4ad (diff) | |
Point filtering fix
Diffstat (limited to 'src/engine/fox_display.c')
| -rw-r--r-- | src/engine/fox_display.c | 4 |
1 files changed, 2 insertions, 2 deletions
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!!"); |
