mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-03-29 22:20:48 +00:00
Fix some warning
This commit is contained in:
parent
931a2c516f
commit
b9dbda5ddc
@ -70,8 +70,8 @@ void microphone_creator::parse_devices(const std::string& list)
|
|||||||
{
|
{
|
||||||
m_sel_list = {};
|
m_sel_list = {};
|
||||||
|
|
||||||
const auto devices_list = fmt::split(list, { "@@@" });
|
const std::vector<std::string> devices_list = fmt::split(list, { "@@@" });
|
||||||
for (u32 index = 0; index < std::min<u32>(m_sel_list.size(), ::size32(devices_list)); index++)
|
for (usz index = 0; index < std::min(m_sel_list.size(), devices_list.size()); index++)
|
||||||
{
|
{
|
||||||
m_sel_list[index] = devices_list[index];
|
m_sel_list[index] = devices_list[index];
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user