mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 00:59:44 -06:00
Guard against controller instances without any inputs.
Clean up OS X keyboard key names. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6985 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -60,7 +60,6 @@ else:
|
||||
if sys.platform == 'win32':
|
||||
files += [ "stdafx.cpp" ]
|
||||
elif sys.platform == 'darwin':
|
||||
libs += [ 'iconv' ]
|
||||
ldflags += [ '-Wl,-force_load,' + env['libvideo'][0].path ]
|
||||
ldflags += [ '-Xarch_i386', '-Wl,-framework,QuickTime' ]
|
||||
ldflags += [ '-weak_framework', 'OpenCL' ]
|
||||
@ -70,6 +69,7 @@ elif sys.platform == 'darwin':
|
||||
if env['HAVE_WX']:
|
||||
wxlibs += env['wxconfiglibs']
|
||||
else:
|
||||
libs += [ 'iconv' ]
|
||||
exe += 'NoGUI'
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user