mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 13:18:50 +00:00
small warning fix
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@656 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
b91a8ef455
commit
1fe3485792
1 changed files with 1 additions and 1 deletions
|
@ -136,7 +136,7 @@ void CConfigMain::CreateGUIControls()
|
||||||
|
|
||||||
// Paths page
|
// Paths page
|
||||||
sbISOPaths = new wxStaticBoxSizer(wxVERTICAL, PathsPage, wxT("ISO Directories:"));
|
sbISOPaths = new wxStaticBoxSizer(wxVERTICAL, PathsPage, wxT("ISO Directories:"));
|
||||||
for(int i = 0; i < SConfig::GetInstance().m_ISOFolder.size(); i++)
|
for(u32 i = 0; i < SConfig::GetInstance().m_ISOFolder.size(); i++)
|
||||||
{
|
{
|
||||||
arrayStringFor_ISOPaths.Add(wxString(SConfig::GetInstance().m_ISOFolder[i].c_str(), wxConvUTF8));
|
arrayStringFor_ISOPaths.Add(wxString(SConfig::GetInstance().m_ISOFolder[i].c_str(), wxConvUTF8));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue