mirror of
https://github.com/libretro/RetroArch
synced 2025-03-29 22:20:21 +00:00
Silence some implicit conversion warnings
This commit is contained in:
parent
4df6d287e3
commit
5187957b3d
@ -1192,7 +1192,7 @@ static void rcheevos_append_menu_achievement(
|
||||
|
||||
menu_entries_append_enum(info->list, cheevo->title,
|
||||
cheevo->description, MENU_ENUM_LABEL_CHEEVOS_LOCKED_ENTRY,
|
||||
MENU_SETTINGS_CHEEVOS_START + idx, 0, 0);
|
||||
(unsigned)(MENU_SETTINGS_CHEEVOS_START + idx), 0, 0);
|
||||
|
||||
if (!cheevo->memaddr)
|
||||
badge_grayscale = true; /* unsupported */
|
||||
@ -1202,7 +1202,7 @@ static void rcheevos_append_menu_achievement(
|
||||
else
|
||||
badge_grayscale = true; /* locked */
|
||||
|
||||
cheevos_set_menu_badge(idx, cheevo->badge, badge_grayscale);
|
||||
cheevos_set_menu_badge((int)idx, cheevo->badge, badge_grayscale);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -3683,7 +3683,7 @@ static int ozone_pointer_up(void *userdata,
|
||||
|
||||
/* Ensure that current category is valid */
|
||||
if (ozone->pointer_categories_selection <= ozone->system_tab_end + horizontal_list_size)
|
||||
ozone_sidebar_goto(ozone, ozone->pointer_categories_selection);
|
||||
ozone_sidebar_goto(ozone, (unsigned)ozone->pointer_categories_selection);
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user