After party
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5601 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
1fa79f1f99
commit
1435c2527a
|
@ -27,9 +27,6 @@ warnings = [
|
|||
'no-conversion',
|
||||
]
|
||||
# XXX check for the availability of these (in GCC 4.3 or newer)
|
||||
if sys.platform != 'darwin':
|
||||
warnings.append('no-array-bounds')
|
||||
warnings.append('no-unused-result')
|
||||
|
||||
compileFlags = [
|
||||
'-fno-exceptions',
|
||||
|
@ -213,6 +210,9 @@ elif (flavour == 'release'):
|
|||
# more warnings
|
||||
if env['lint']:
|
||||
warnings.append('error')
|
||||
if sys.platform != 'darwin':
|
||||
warnings.append('no-array-bounds')
|
||||
warnings.append('no-unused-result')
|
||||
#warnings.append('unreachable-code')
|
||||
#warnings.append('float-equal')
|
||||
|
||||
|
|
|
@ -714,7 +714,7 @@ void CFrame::OnCustomHostMessage(int Id)
|
|||
|
||||
CPluginManager::GetInstance().OpenDebug(
|
||||
GetHandle(),
|
||||
SConfig::GetInstance().m_LocalCoreStartupParameter.m_strDSPPlugin,
|
||||
SConfig::GetInstance().m_LocalCoreStartupParameter.m_strDSPPlugin.c_str(),
|
||||
PLUGIN_TYPE_DSP, false
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in New Issue