diff options
| author | SND\edgbla_cp <SND\edgbla_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2011-01-02 21:17:12 +0000 |
|---|---|---|
| committer | SND\edgbla_cp <SND\edgbla_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2011-01-02 21:17:12 +0000 |
| commit | f0e0e3d0fdcb81b82fb2d554f2350f9ea135b0e9 (patch) | |
| tree | dd6d10dd82117dab0de37c2cefdaff39791b64d8 /win32/gui/plugin.c | |
| parent | ff50ab7210911eb6c49914b68102e18803b7d944 (diff) | |
| download | pcsxr-f0e0e3d0fdcb81b82fb2d554f2350f9ea135b0e9.tar.gz | |
Visual vibration interface.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@61703 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 0709ee88..ccde0c89 100644 --- a/win32/gui/plugin.c +++ b/win32/gui/plugin.c @@ -287,8 +287,10 @@ int _OpenPlugins(HWND hWnd) { SPU_registerCallback(SPUirq);
ret = PAD1_open(hWnd);
if (ret < 0) { SysMessage (_("Error Opening PAD1 Plugin (%d)"), ret); return -1; }
+ PAD1_registerVibration(GPU_visualVibration);
ret = PAD2_open(hWnd);
if (ret < 0) { SysMessage (_("Error Opening PAD2 Plugin (%d)"), ret); return -1; }
+ PAD2_registerVibration(GPU_visualVibration);
SetCurrentDirectory(PcsxDir);
ShowCursor(FALSE);
|
