summaryrefslogtreecommitdiff
path: root/macosx/Plugin.c
diff options
context:
space:
mode:
authorSND\edgbla_cp <SND\edgbla_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2011-01-03 21:43:14 +0000
committerSND\edgbla_cp <SND\edgbla_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2011-01-03 21:43:14 +0000
commit7fc90b21f5172684e1b01307fdc0d3985bfee64d (patch)
treecff420c8a87c8cff211af701d69efe2357847145 /macosx/Plugin.c
parent70e3ed80fcc6dcd15a4dea2e5f1dece151e4b047 (diff)
downloadpcsxr-7fc90b21f5172684e1b01307fdc0d3985bfee64d.tar.gz
Gun sight interface.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@61728 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'macosx/Plugin.c')
-rw-r--r--macosx/Plugin.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/macosx/Plugin.c b/macosx/Plugin.c
index c5c450d2..4710b057 100644
--- a/macosx/Plugin.c
+++ b/macosx/Plugin.c
@@ -93,9 +93,11 @@ int _OpenPlugins() {
ret = PAD1_open(&gpuDisp);
if (ret < 0) { SysMessage(_("Error Opening PAD1 Plugin")); return -1; }
PAD1_registerVibration(GPU_visualVibration);
+ PAD1_registerCursor(GPU_cursor);
ret = PAD2_open(&gpuDisp);
if (ret < 0) { SysMessage(_("Error Opening PAD2 Plugin")); return -1; }
PAD2_registerVibration(GPU_visualVibration);
+ PAD2_registerCursor(GPU_cursor);
return 0;
}