From b0d959832d0a07e4aea6aea9532b36358f95375d Mon Sep 17 00:00:00 2001 From: nakeee Date: Wed, 10 Dec 2008 21:07:11 +0000 Subject: [PATCH] fixed typo:) git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1486 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Plugins/Plugin_PadSimple/Src/SConscript | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Source/Plugins/Plugin_PadSimple/Src/SConscript b/Source/Plugins/Plugin_PadSimple/Src/SConscript index 22b33e43f1..f5fa308e2a 100644 --- a/Source/Plugins/Plugin_PadSimple/Src/SConscript +++ b/Source/Plugins/Plugin_PadSimple/Src/SConscript @@ -14,11 +14,11 @@ files = [ ] padenv = env.Clone() -if not padenv['HAVE_WX']: - files += [ - "GUI/ConfigDlg.cpp", - "XInputBase.cpp", - ] +if padenv['HAVE_WX']: + files += [ + "GUI/ConfigDlg.cpp", + "XInputBase.cpp", + ] padenv.Append(LIBS = [ 'common' ])