summaryrefslogtreecommitdiff
path: root/input.h
diff options
context:
space:
mode:
authorAutechre2021-05-13 17:16:23 +0200
committerGitHub2021-05-13 17:16:23 +0200
commitcc1a07462113e7018a2e898b8293bcc15057a5bf (patch)
tree2c9cafd8e27b012582cc5ee5f1a49678bc509dc8 /input.h
parent37430f22c5234cb09f2325575806b830f947bf8a (diff)
parent134aba2b37ca7fec28b6fcd1cd6fca0dd1abc9ab (diff)
downloadpicogpsp-cc1a07462113e7018a2e898b8293bcc15057a5bf.tar.gz
picogpsp-cc1a07462113e7018a2e898b8293bcc15057a5bf.tar.bz2
picogpsp-cc1a07462113e7018a2e898b8293bcc15057a5bf.zip
Merge pull request #86 from jdgleaver/ff-button
Add dedicated RetroPad fast-forward button
Diffstat (limited to 'input.h')
-rw-r--r--input.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/input.h b/input.h
index bec7997..90fc930 100644
--- a/input.h
+++ b/input.h
@@ -56,6 +56,11 @@ static const map btn_map[] = {
{ RETRO_DEVICE_ID_JOYPAD_A, BUTTON_A }
};
+extern bool libretro_supports_bitmasks;
+extern bool libretro_supports_ff_override;
+extern bool libretro_ff_enabled;
+extern bool libretro_ff_enabled_prev;
+
void init_input(void);
u32 update_input(void);
void input_write_savestate(void);