aboutsummaryrefslogtreecommitdiff
path: root/libpcsxcore/plugins.h
diff options
context:
space:
mode:
authorTwinaphex2016-06-18 19:15:13 +0200
committerGitHub2016-06-18 19:15:13 +0200
commit10ed51a07184f5235e1c85cd9995aaa1481e0dca (patch)
treef973933600949b9c5e4bc63f63bc2df075c08a33 /libpcsxcore/plugins.h
parent05311a18fb23799776f9552614ef4c5fb5d852fa (diff)
parent73d32d69496795050589cb845ddbd1a074ca3955 (diff)
downloadpcsx_rearmed-10ed51a07184f5235e1c85cd9995aaa1481e0dca.tar.gz
pcsx_rearmed-10ed51a07184f5235e1c85cd9995aaa1481e0dca.tar.bz2
pcsx_rearmed-10ed51a07184f5235e1c85cd9995aaa1481e0dca.zip
Merge pull request #47 from alexis-puska/master
Suppress segmentation fault and crazy integer value.
Diffstat (limited to 'libpcsxcore/plugins.h')
-rw-r--r--libpcsxcore/plugins.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libpcsxcore/plugins.h b/libpcsxcore/plugins.h
index 626939b..132df90 100644
--- a/libpcsxcore/plugins.h
+++ b/libpcsxcore/plugins.h
@@ -234,8 +234,8 @@ typedef long (CALLBACK* PADshutdown)(void);
typedef long (CALLBACK* PADtest)(void);
typedef long (CALLBACK* PADclose)(void);
typedef long (CALLBACK* PADquery)(void);
-typedef long (CALLBACK* PADreadPort1)(PadDataS*, int pad_index);
-typedef long (CALLBACK* PADreadPort2)(PadDataS*, int pad_index);
+typedef long (CALLBACK* PADreadPort1)(PadDataS*);
+typedef long (CALLBACK* PADreadPort2)(PadDataS*);
typedef long (CALLBACK* PADkeypressed)(void);
typedef unsigned char (CALLBACK* PADstartPoll)(int);
typedef unsigned char (CALLBACK* PADpoll)(unsigned char);