mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
After party
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5601 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -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')
|
||||||
|
|
||||||
|
@ -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
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user