aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/config.h2
-rw-r--r--include/psemu_plugin_defs.h17
2 files changed, 16 insertions, 3 deletions
diff --git a/include/config.h b/include/config.h
index ce2f3ea..362e4a4 100644
--- a/include/config.h
+++ b/include/config.h
@@ -1,2 +1,2 @@
#define MAXPATHLEN 256
-#define PACKAGE_VERSION "1.9"
+#define PCSX_VERSION "1.9"
diff --git a/include/psemu_plugin_defs.h b/include/psemu_plugin_defs.h
index 9986654..545cfca 100644
--- a/include/psemu_plugin_defs.h
+++ b/include/psemu_plugin_defs.h
@@ -153,6 +153,8 @@ typedef struct
+// No controller
+#define PSE_PAD_TYPE_NONE 0
// MOUSE SCPH-1030
#define PSE_PAD_TYPE_MOUSE 1
// NEGCON - 16 button analog controller SLPH-00001
@@ -191,9 +193,15 @@ typedef struct
typedef struct
{
- // controler type - fill it withe predefined values above
+ // controller type - fill it withe predefined values above
unsigned char controllerType;
+ //0 : no multitap between psx and pad
+ //1 : multitap between psx and pad on port 1
+ //2 : multitap between psx and pad on port 2
+ int portMultitap;
+ int requestPadIndex;
+
// status of buttons - every controller fills this field
unsigned short buttonStatus;
@@ -207,8 +215,13 @@ typedef struct
unsigned char Vib[2];
unsigned char VibF[2];
-
+
+ //configuration mode Request 0x43
+ int configMode;
unsigned char reserved[87];
+
+ //Lightgun values
+ int absoluteX,absoluteY;
} PadDataS;