mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-04 07:09:03 +00:00
Kill some unnecessary c_str and use StrToWxStr in a few places that I missed.
This commit is contained in:
parent
56f09d3b91
commit
03ec9a2e08
20 changed files with 53 additions and 52 deletions
|
@ -101,7 +101,7 @@ void CFrame::CreateMenu()
|
|||
drives = cdio_get_devices();
|
||||
// Windows Limitation of 24 character drives
|
||||
for (unsigned int i = 0; i < drives.size() && i < 24; i++) {
|
||||
externalDrive->Append(IDM_DRIVE1 + i, StrToWxStr(drives[i].c_str()));
|
||||
externalDrive->Append(IDM_DRIVE1 + i, StrToWxStr(drives[i]));
|
||||
}
|
||||
|
||||
fileMenu->AppendSeparator();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue