Fix system information fallthrough

This commit is contained in:
twinaphex 2015-09-24 13:37:25 +02:00
parent 7a5f2228aa
commit 7bb035a8b9
2 changed files with 3 additions and 1 deletions

View File

@ -633,6 +633,7 @@ static int menu_cbs_init_bind_deferred_push_compare_label(menu_file_list_cbs_t *
break;
case MENU_LABEL_SYSTEM_INFORMATION:
cbs->action_deferred_push = deferred_push_system_information;
break;
case MENU_LABEL_DEBUG_INFORMATION:
cbs->action_deferred_push = deferred_push_debug_information;
break;

View File

@ -17,10 +17,11 @@
#ifndef _MENU_INPUT_H
#define _MENU_INPUT_H
#include "../input/input_driver.h"
#include "../input/keyboard_line.h"
#include "../libretro.h"
typedef uint64_t retro_input_t;
#ifdef __cplusplus
extern "C" {
#endif