mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-01-29 15:32:01 +00:00
Add ui_companion_driver_toggle
This commit is contained in:
parent
c6220a9e66
commit
cfe884f0b7
@ -132,6 +132,13 @@ void ui_companion_driver_init_first(void)
|
||||
}
|
||||
}
|
||||
|
||||
void ui_companion_driver_toggle(void)
|
||||
{
|
||||
const ui_companion_driver_t *ui = ui_companion_get_ptr();
|
||||
if (ui_companion && ui_companion->toggle)
|
||||
ui_companion->toggle(ui_companion_data);
|
||||
}
|
||||
|
||||
void ui_companion_driver_notify_refresh(void)
|
||||
{
|
||||
const ui_companion_driver_t *ui = ui_companion_get_ptr();
|
||||
|
@ -90,6 +90,8 @@ void ui_companion_driver_notify_list_loaded(file_list_t *list, file_list_t *menu
|
||||
|
||||
void ui_companion_driver_notify_content_loaded(void);
|
||||
|
||||
void ui_companion_driver_toggle(void);
|
||||
|
||||
void ui_companion_driver_free(void);
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
Loading…
x
Reference in New Issue
Block a user