diff options
| author | SND\ckain_cp <SND\ckain_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2014-05-12 07:21:29 +0000 |
|---|---|---|
| committer | SND\ckain_cp <SND\ckain_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2014-05-12 07:21:29 +0000 |
| commit | 5df78f4c2b824a192a4e2691870fd2f04de91075 (patch) | |
| tree | 3e260a98d16f9673c733ea28e9bd4c977e0b392d /gui/ConfDlg.c | |
| parent | 0d9ec383e2a8d2c50fc633e561bf805a5ca0263c (diff) | |
| download | pcsxr-5df78f4c2b824a192a4e2691870fd2f04de91075.tar.gz | |
gtk: enable controller configuration change during emulation pause/stop.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@90350 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'gui/ConfDlg.c')
| -rwxr-xr-x | gui/ConfDlg.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gui/ConfDlg.c b/gui/ConfDlg.c index 7041c259..c0d774ff 100755 --- a/gui/ConfDlg.c +++ b/gui/ConfDlg.c @@ -326,6 +326,7 @@ void OnConf_Pad() { PADconfigure conf; char Plugin[MAXPATHLEN]; + // PAD 1 sprintf(Plugin, "%s/%s", Config.PluginsDir, Config.Pad1); drv = SysLoadLibrary(Plugin); if (drv == NULL) { printf("Error with file %s\n", Plugin); return; } @@ -341,6 +342,7 @@ void OnConf_Pad() { SysCloseLibrary(drv); + // PAD 2 if (strcmp(Config.Pad1, Config.Pad2) != 0) { sprintf(Plugin, "%s/%s", Config.PluginsDir, Config.Pad2); drv = SysLoadLibrary(Plugin); |
