From 8643bf84559270d2ca9980e2b628715cdc0e592a Mon Sep 17 00:00:00 2001 From: mattmenke Date: Sun, 13 Sep 2009 02:14:34 +0000 Subject: [PATCH] gui: Now uses new plugins to check if selected plugins when clicking "Apply" on plugin config screen rather than the old selected plugins. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1813 96395faa-99c1-11dd-bbfe-3dabce05a288 --- pcsx2/gui/AppMain.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/gui/AppMain.cpp b/pcsx2/gui/AppMain.cpp index aff9e25bd6..414bcd8398 100644 --- a/pcsx2/gui/AppMain.cpp +++ b/pcsx2/gui/AppMain.cpp @@ -560,7 +560,7 @@ void Pcsx2App::ApplySettings( const AppConfig& newconf ) const PluginInfo* pi = tbl_PluginInfo-1; while( ++pi, pi->shortname != NULL ) { - if( newconf.FullpathTo( pi->id ) != g_Conf->FullpathTo( pi->id ) ) + if( newconf.FullpathTo( pi->id ) != newconf.FullpathTo( pi->id ) ) break; } if( pi->shortname != NULL )