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 /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 'gui/Plugin.c')
| -rw-r--r-- | gui/Plugin.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gui/Plugin.c b/gui/Plugin.c index 70313d5f..99afab83 100644 --- a/gui/Plugin.c +++ b/gui/Plugin.c @@ -329,8 +329,10 @@ int _OpenPlugins() { GPU_registerCallback(GPUbusy); ret = PAD1_open(&gpuDisp); if (ret < 0) { SysMessage(_("Error opening Controller 1 plugin!")); return -1; } + PAD1_registerVibration(GPU_visualVibration); ret = PAD2_open(&gpuDisp); if (ret < 0) { SysMessage(_("Error opening Controller 2 plugin!")); return -1; } + PAD2_registerVibration(GPU_visualVibration); if (Config.UseNet && !NetOpened) { netInfo info; |
