Add input_poll_type_behavior

This commit is contained in:
twinaphex 2016-01-27 01:29:53 +01:00
parent 370f2c087f
commit 6fd1a98f97
3 changed files with 7 additions and 3 deletions

View File

@ -599,7 +599,7 @@ static bool event_init_core(void)
if (!event_init_content())
return false;
core.poll_type = POLL_TYPE_LATE;
core.poll_type = settings->input.poll_type_behavior;
retro_init_libretro_cbs(&retro_ctx);
rarch_ctl(RARCH_CTL_INIT_SYSTEM_AV_INFO, NULL);

View File

@ -482,8 +482,9 @@ static void config_set_defaults(void)
#if TARGET_OS_IPHONE
settings->input.small_keyboard_enable = false;
#endif
settings->input.keyboard_gamepad_enable = true;
settings->input.keyboard_gamepad_mapping_type = 1;
settings->input.keyboard_gamepad_enable = true;
settings->input.keyboard_gamepad_mapping_type = 1;
settings->input.poll_type_behavior = 1;
#ifdef HAVE_FFMPEG
settings->multimedia.builtin_mediaplayer_enable = true;
#else
@ -1623,6 +1624,7 @@ static bool config_load_file(const char *path, bool set_defaults)
#endif
CONFIG_GET_BOOL_BASE(conf, settings, input.keyboard_gamepad_enable, "keyboard_gamepad_enable");
CONFIG_GET_INT_BASE(conf, settings, input.keyboard_gamepad_mapping_type, "keyboard_gamepad_mapping_type");
CONFIG_GET_INT_BASE(conf, settings, input.poll_type_behavior, "input_poll_type_behavior");
config_get_path(conf, "recording_output_directory", global->record.output_dir,
sizeof(global->record.output_dir));
@ -2885,6 +2887,7 @@ bool config_save_file(const char *path)
#endif
config_set_bool(conf, "keyboard_gamepad_enable", settings->input.keyboard_gamepad_enable);
config_set_int(conf, "keyboard_gamepad_mapping_type", settings->input.keyboard_gamepad_mapping_type);
config_set_int(conf, "input_poll_type_behavior", settings->input.poll_type_behavior);
config_set_bool(conf, "core_set_supports_no_game_enable",
settings->set_supports_no_game_enable);

View File

@ -263,6 +263,7 @@ typedef struct settings
#endif
bool keyboard_gamepad_enable;
unsigned keyboard_gamepad_mapping_type;
unsigned poll_type_behavior;
} input;
struct