diff options
| author | MegaMech <MegaMech@users.noreply.github.com> | 2025-01-05 12:55:39 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-05 12:55:39 -0700 |
| commit | 4cc97c9a4494e528147965523db54583f3677567 (patch) | |
| tree | c38b3e553273196bd20700402c5ab2bef6bc379c /src/code_80057C60.c | |
| parent | 3435cee04068173a86bf64b1cc8f4af7cbfba4c5 (diff) | |
| parent | abec30850763e78bf51cac39792323b02c13a3f5 (diff) | |
Merge pull request #135 from MegaMech/wide
Widescreen Fixes and Impl MinimapDimensions
Diffstat (limited to 'src/code_80057C60.c')
| -rw-r--r-- | src/code_80057C60.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/code_80057C60.c b/src/code_80057C60.c index d9be361fa..a17b52bf5 100644 --- a/src/code_80057C60.c +++ b/src/code_80057C60.c @@ -1037,14 +1037,14 @@ void func_800591B4(void) { if (D_80165800[0] != 0) { func_8004EE54(0); if (gModeSelection != BATTLE) { - func_8004F020(0); + set_minimap_finishline_position(0); } func_8004F3E4(0); } if ((gScreenModeSelection == SCREEN_MODE_2P_SPLITSCREEN_HORIZONTAL) && (D_80165800[1] != 0)) { func_8004EE54(1); if (gModeSelection != BATTLE) { - func_8004F020(1); + set_minimap_finishline_position(1); } func_8004F3E4(1); } @@ -1122,7 +1122,8 @@ void render_hud_2p_vertical_player_two(void) { void render_hud_lap_3p_4p(s32 playerId) { if (gModeSelection != BATTLE) { if (D_801657F8 && gIsHUDVisible) { - draw_hud_2d_texture_32x8(playerHUD[playerId].lapX, playerHUD[playerId].lapY, (u8*) common_texture_hud_lap); + //draw_hud_2d_texture_32x8(playerHUD[playerId].lapX, playerHUD[playerId].lapY, (u8*) common_texture_hud_lap); + draw_hud_2d_texture(playerHUD[playerId].lapX, playerHUD[playerId].lapY, 32, 8, common_texture_hud_lap); draw_lap_count(playerHUD[playerId].lapX - 12, playerHUD[playerId].lapY + 4, playerHUD[playerId].alsoLapCount); } |
