libretro / gambatte-libretro

Hard fork of Gambatte to the libretro API.
http://sourceforge.net/projects/gambatte/
GNU General Public License v2.0
103 stars 78 forks source link

Add turbo A/B buttons #183

Closed jdgleaver closed 3 years ago

jdgleaver commented 3 years ago

This PR adds turbo A and B buttons, mapped respectively (by default) to RetroPad X and Y. The repeat interval can be set via a new Turbo Button Period core option.

In addition, this PR optimises fetching of the input state. At present, libretro inputs are queried (repeatedly) many times per frame, which is highly wasteful, Now the input state is determined only once per frame (directly after input_poll_cb()), and 'internal' queries read the cached state value.

Closes #165