aboutsummaryrefslogtreecommitdiff
path: root/frontend/in_tsbutton.c
diff options
context:
space:
mode:
authornotaz2012-04-24 01:48:17 +0300
committernotaz2012-04-29 19:32:08 +0300
commitb07c18e8645a17be916266820ae564e0d320cc1a (patch)
treee5a2dfa3128b1294f86ed010258ede0c37e56bd0 /frontend/in_tsbutton.c
parent7badc9353b9570fd1c67827cfb477cef07974ddb (diff)
downloadpcsx_rearmed-b07c18e8645a17be916266820ae564e0d320cc1a.tar.gz
pcsx_rearmed-b07c18e8645a17be916266820ae564e0d320cc1a.tar.bz2
pcsx_rearmed-b07c18e8645a17be916266820ae564e0d320cc1a.zip
frontend: input: pass default binds as argument
allows to get rid of some hacks
Diffstat (limited to 'frontend/in_tsbutton.c')
-rw-r--r--frontend/in_tsbutton.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/in_tsbutton.c b/frontend/in_tsbutton.c
index 84d6895..80c9c58 100644
--- a/frontend/in_tsbutton.c
+++ b/frontend/in_tsbutton.c
@@ -133,6 +133,6 @@ static const in_drv_t in_tsbutton_drv = {
void in_tsbutton_init(void)
{
tsbutton_down_id = last_tsbutton_id = -1;
- in_register_driver(&in_tsbutton_drv);
+ in_register_driver(&in_tsbutton_drv, NULL);
}