mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-25 19:55:50 +00:00
Fix an undefined symbol in the WiimoteNew plugin on linux. The inputuicommon lib must be earlier in the list than inputcommon and common.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5887 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
697480f5cc
commit
ec9871e2bc
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ if sys.platform == 'win32' or sys.platform == 'linux2':
|
||||||
libs += [ 'SDL' ]
|
libs += [ 'SDL' ]
|
||||||
|
|
||||||
if wiinewenv['HAVE_WX']:
|
if wiinewenv['HAVE_WX']:
|
||||||
libs += [ 'inputuicommon' ]
|
libs = [ 'inputuicommon' ] + libs
|
||||||
files += [ 'WiimoteConfigDiag.cpp' ]
|
files += [ 'WiimoteConfigDiag.cpp' ]
|
||||||
|
|
||||||
if wiinewenv['HAVE_WIIUSE']:
|
if wiinewenv['HAVE_WIIUSE']:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue