parent
6d438ba760
commit
5abe3577ae
|
@ -2076,7 +2076,7 @@ const u8 *const main_credits_font_lut[] = {
|
|||
// HUD camera table 0x020087CC-0x020087E3
|
||||
const u8 *const main_hud_camera_lut[] = {
|
||||
texture_hud_char_camera, texture_hud_char_mario_head, texture_hud_char_lakitu, texture_hud_char_no_camera,
|
||||
texture_hud_char_arrow_up, texture_hud_char_arrow_down,
|
||||
texture_hud_char_arrow_up, texture_hud_char_arrow_down, texture_hud_char_luigi_head,
|
||||
};
|
||||
|
||||
// If you change the language here, the following Makefile rule also needs to
|
||||
|
|
|
@ -433,7 +433,7 @@ void render_hud_camera_status(void) {
|
|||
|
||||
switch (sCameraHUD.status & CAM_STATUS_MODE_GROUP) {
|
||||
case CAM_STATUS_MARIO:
|
||||
render_hud_tex_lut(x + 16, y, (*cameraLUT)[GLYPH_CAM_MARIO_HEAD]);
|
||||
render_hud_tex_lut(x + 16, y, (*cameraLUT)[(gNetworkType == NT_SERVER) ? GLYPH_CAM_MARIO_HEAD : GLYPH_CAM_LUIGI_HEAD]);
|
||||
break;
|
||||
case CAM_STATUS_LAKITU:
|
||||
render_hud_tex_lut(x + 16, y, (*cameraLUT)[GLYPH_CAM_LAKITU_HEAD]);
|
||||
|
|
|
@ -18,7 +18,8 @@ enum CameraHUDLut {
|
|||
GLYPH_CAM_LAKITU_HEAD,
|
||||
GLYPH_CAM_FIXED,
|
||||
GLYPH_CAM_ARROW_UP,
|
||||
GLYPH_CAM_ARROW_DOWN
|
||||
GLYPH_CAM_ARROW_DOWN,
|
||||
GLYPH_CAM_LUIGI_HEAD,
|
||||
};
|
||||
|
||||
// Functions
|
||||
|
|
Loading…
Reference in New Issue