diff options
| author | SND\edgbla_cp <SND\edgbla_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2011-01-03 21:43:14 +0000 |
|---|---|---|
| committer | SND\edgbla_cp <SND\edgbla_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2011-01-03 21:43:14 +0000 |
| commit | 7fc90b21f5172684e1b01307fdc0d3985bfee64d (patch) | |
| tree | cff420c8a87c8cff211af701d69efe2357847145 /win32/gui/plugin.c | |
| parent | 70e3ed80fcc6dcd15a4dea2e5f1dece151e4b047 (diff) | |
| download | pcsxr-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 'win32/gui/plugin.c')
| -rw-r--r-- | win32/gui/plugin.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/win32/gui/plugin.c b/win32/gui/plugin.c index ccde0c89..f9bfe96f 100644 --- a/win32/gui/plugin.c +++ b/win32/gui/plugin.c @@ -288,9 +288,11 @@ int _OpenPlugins(HWND hWnd) { ret = PAD1_open(hWnd);
if (ret < 0) { SysMessage (_("Error Opening PAD1 Plugin (%d)"), ret); return -1; }
PAD1_registerVibration(GPU_visualVibration);
+ PAD1_registerCursor(GPU_cursor);
ret = PAD2_open(hWnd);
if (ret < 0) { SysMessage (_("Error Opening PAD2 Plugin (%d)"), ret); return -1; }
PAD2_registerVibration(GPU_visualVibration);
+ PAD2_registerCursor(GPU_cursor);
SetCurrentDirectory(PcsxDir);
ShowCursor(FALSE);
|
