mirror of
https://github.com/libretro/RetroArch
synced 2025-04-10 06:44:27 +00:00
Move turbo button code to input_poll (should verify if
turbo buttons still work up to this point)
This commit is contained in:
parent
8334567969
commit
8fbec2348e
@ -391,12 +391,24 @@ const struct retro_keybind *libretro_input_binds[MAX_USERS];
|
|||||||
void input_poll(void)
|
void input_poll(void)
|
||||||
{
|
{
|
||||||
size_t i;
|
size_t i;
|
||||||
|
const struct retro_keybind *binds[MAX_USERS];
|
||||||
settings_t *settings = config_get_ptr();
|
settings_t *settings = config_get_ptr();
|
||||||
|
|
||||||
input_driver_poll();
|
input_driver_poll();
|
||||||
|
|
||||||
for (i = 0; i < MAX_USERS; i++)
|
input_driver_turbo_btns.count++;
|
||||||
libretro_input_binds[i] = settings->input.binds[i];
|
|
||||||
|
for (i = 0; i < settings->input.max_users; i++)
|
||||||
|
{
|
||||||
|
libretro_input_binds[i] = settings->input.binds[i];
|
||||||
|
binds[i] = settings->input.binds[i];
|
||||||
|
input_driver_turbo_btns.frame_enable[i] = 0;
|
||||||
|
|
||||||
|
if (!input_driver_block_libretro_input)
|
||||||
|
input_driver_turbo_btns.frame_enable[i] = current_input->input_state(
|
||||||
|
current_input_data, binds,
|
||||||
|
i, RETRO_DEVICE_JOYPAD, 0, RARCH_TURBO_ENABLE);
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef HAVE_OVERLAY
|
#ifdef HAVE_OVERLAY
|
||||||
input_poll_overlay(NULL, settings->input.overlay_opacity);
|
input_poll_overlay(NULL, settings->input.overlay_opacity);
|
||||||
@ -430,7 +442,6 @@ int16_t input_state(unsigned port, unsigned device,
|
|||||||
{
|
{
|
||||||
int16_t res = 0;
|
int16_t res = 0;
|
||||||
settings_t *settings = config_get_ptr();
|
settings_t *settings = config_get_ptr();
|
||||||
|
|
||||||
|
|
||||||
device &= RETRO_DEVICE_MASK;
|
device &= RETRO_DEVICE_MASK;
|
||||||
|
|
||||||
@ -606,7 +617,6 @@ retro_input_t input_keys_pressed(void)
|
|||||||
{
|
{
|
||||||
unsigned i;
|
unsigned i;
|
||||||
retro_input_t ret;
|
retro_input_t ret;
|
||||||
const struct retro_keybind *binds[MAX_USERS];
|
|
||||||
settings_t *settings = config_get_ptr();
|
settings_t *settings = config_get_ptr();
|
||||||
|
|
||||||
ret.type = 0;
|
ret.type = 0;
|
||||||
@ -615,8 +625,6 @@ retro_input_t input_keys_pressed(void)
|
|||||||
if (!current_input || !current_input_data)
|
if (!current_input || !current_input_data)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
input_driver_turbo_btns.count++;
|
|
||||||
|
|
||||||
if (current_input->key_pressed &&
|
if (current_input->key_pressed &&
|
||||||
check_input_driver_block_hotkey(
|
check_input_driver_block_hotkey(
|
||||||
current_input->key_pressed(current_input_data, RARCH_ENABLE_HOTKEY)))
|
current_input->key_pressed(current_input_data, RARCH_ENABLE_HOTKEY)))
|
||||||
@ -624,18 +632,6 @@ retro_input_t input_keys_pressed(void)
|
|||||||
else
|
else
|
||||||
input_driver_block_libretro_input = false;
|
input_driver_block_libretro_input = false;
|
||||||
|
|
||||||
for (i = 0; i < settings->input.max_users; i++)
|
|
||||||
{
|
|
||||||
binds[i] = settings->input.binds[i];
|
|
||||||
|
|
||||||
input_driver_turbo_btns.frame_enable[i] = 0;
|
|
||||||
|
|
||||||
if (!input_driver_block_libretro_input)
|
|
||||||
input_driver_turbo_btns.frame_enable[i] = current_input->input_state(
|
|
||||||
current_input_data, binds,
|
|
||||||
i, RETRO_DEVICE_JOYPAD, 0, RARCH_TURBO_ENABLE);
|
|
||||||
}
|
|
||||||
|
|
||||||
for (i = 0; i < RARCH_BIND_LIST_END; i++)
|
for (i = 0; i < RARCH_BIND_LIST_END; i++)
|
||||||
{
|
{
|
||||||
bool state = false;
|
bool state = false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user