mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 04:08:55 +00:00
warning fixes
please review Source/Plugins/Plugin_VideoOGL/Src/VertexManager.cpp git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1307 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
8777917177
commit
0bad9e9385
12 changed files with 42 additions and 59 deletions
|
@ -459,8 +459,8 @@ void CDebugger::DoShowHideConsole()
|
|||
void CDebugger::LogSettings(wxCommandEvent& event)
|
||||
{
|
||||
// Only allow one selected log at a time
|
||||
for (int i = 0; i < m_settings->GetCount(); ++i)
|
||||
if(i != event.GetInt()) m_settings->Check(i, false);
|
||||
for (u32 i = 0; i < m_settings->GetCount(); ++i)
|
||||
if(i != (u32)event.GetInt()) m_settings->Check(i, false);
|
||||
|
||||
if(m_settings->IsChecked(0)) g_Config.iLog = CONF_LOG;
|
||||
else if(m_settings->IsChecked(1)) g_Config.iLog = CONF_PRIMLOG;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue