mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-02 15:11:44 +00:00
Systematically eliminating compiler warnings.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5117 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
3cc5d8ce6f
commit
1d40b8a5ae
26 changed files with 74 additions and 67 deletions
|
@ -113,7 +113,7 @@ void CFrame::CreateMenu()
|
|||
|
||||
drives = cdio_get_devices();
|
||||
// Windows Limitation of 24 character drives
|
||||
for (int i = 0; i < drives.size() && i < 24; i++) {
|
||||
for (unsigned int i = 0; i < drives.size() && i < 24; i++) {
|
||||
externalDrive->Append(IDM_DRIVE1 + i, wxString::FromAscii(drives[i].c_str()));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue