mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-15 06:50:32 +00:00
Change menu_navigation_get_selection's return type to size_t
This commit is contained in:
parent
dbccc4f4f0
commit
25258354b4
@ -254,7 +254,7 @@ void menu_navigation_ascend_alphabet(menu_navigation_t *nav, size_t *ptr_out)
|
||||
menu_driver_navigation_ascend_alphabet(ptr_out);
|
||||
}
|
||||
|
||||
ssize_t menu_navigation_get_selection(menu_navigation_t *nav)
|
||||
size_t menu_navigation_get_selection(menu_navigation_t *nav)
|
||||
{
|
||||
if (!nav)
|
||||
return -1;
|
||||
|
@ -106,7 +106,7 @@ void menu_navigation_descend_alphabet(menu_navigation_t *nav, size_t *ptr_out);
|
||||
**/
|
||||
void menu_navigation_ascend_alphabet(menu_navigation_t *nav, size_t *ptr_out);
|
||||
|
||||
ssize_t menu_navigation_get_selection(menu_navigation_t *nav);
|
||||
size_t menu_navigation_get_selection(menu_navigation_t *nav);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user