After party

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5601 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee
2010-06-04 05:21:46 +00:00
parent 1fa79f1f99
commit 1435c2527a
2 changed files with 4 additions and 4 deletions

View File

@ -27,9 +27,6 @@ warnings = [
'no-conversion', 'no-conversion',
] ]
# XXX check for the availability of these (in GCC 4.3 or newer) # 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 = [ compileFlags = [
'-fno-exceptions', '-fno-exceptions',
@ -213,6 +210,9 @@ elif (flavour == 'release'):
# more warnings # more warnings
if env['lint']: if env['lint']:
warnings.append('error') warnings.append('error')
if sys.platform != 'darwin':
warnings.append('no-array-bounds')
warnings.append('no-unused-result')
#warnings.append('unreachable-code') #warnings.append('unreachable-code')
#warnings.append('float-equal') #warnings.append('float-equal')

View File

@ -714,7 +714,7 @@ void CFrame::OnCustomHostMessage(int Id)
CPluginManager::GetInstance().OpenDebug( CPluginManager::GetInstance().OpenDebug(
GetHandle(), GetHandle(),
SConfig::GetInstance().m_LocalCoreStartupParameter.m_strDSPPlugin, SConfig::GetInstance().m_LocalCoreStartupParameter.m_strDSPPlugin.c_str(),
PLUGIN_TYPE_DSP, false PLUGIN_TYPE_DSP, false
); );