mirror of
https://github.com/libretro/RetroArch
synced 2025-02-06 09:40:06 +00:00
Create menu_navigation_get_ptr
This commit is contained in:
parent
b28a45e7da
commit
9441ba5a5d
@ -22,6 +22,13 @@
|
||||
#include <ctype.h>
|
||||
#include "menu_navigation.h"
|
||||
|
||||
menu_navigation_t *menu_navigation_get_ptr(void)
|
||||
{
|
||||
menu_handle_t *menu = menu_driver_get_ptr();
|
||||
if (!menu)
|
||||
return NULL;
|
||||
return &menu->navigation;
|
||||
}
|
||||
/**
|
||||
* menu_navigation_clear:
|
||||
* @pending_push : pending push ?
|
||||
|
@ -23,6 +23,8 @@
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
menu_navigation_t *menu_navigation_get_ptr(void);
|
||||
|
||||
/**
|
||||
* menu_navigation_clear:
|
||||
* @pending_push : pending push ?
|
||||
|
Loading…
x
Reference in New Issue
Block a user