Revert "(Emscripten) Buildfix"

This reverts commit c276f3f8a2ab72036f4bd234071c1c6ea650d034.
This commit is contained in:
twinaphex 2015-09-02 12:42:45 +02:00
parent c276f3f8a2
commit 634c24ac0b
2 changed files with 3 additions and 3 deletions

View File

@ -259,7 +259,7 @@ void menu_navigation_ascend_alphabet(menu_navigation_t *nav, size_t *ptr_out)
menu_driver_navigation_ascend_alphabet(ptr_out);
}
unsigned menu_navigation_get_current_selection(void)
ssize_t menu_navigation_get_current_selection(void)
{
menu_navigation_t *nav = menu_navigation_get_ptr();
if (!nav)

View File

@ -34,7 +34,7 @@ typedef struct menu_navigation
} indices;
unsigned acceleration;
} scroll;
unsigned selection_ptr;
size_t selection_ptr;
} menu_navigation_t;
/**
@ -99,7 +99,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);
unsigned menu_navigation_get_current_selection(void);
ssize_t menu_navigation_get_current_selection(void);
#ifdef __cplusplus
}