mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-03-17 18:55:19 +01:00
rsx/overlays: Fix clang build
This commit is contained in:
parent
a318384142
commit
4780e7c8da
|
|
@ -140,7 +140,7 @@ namespace rsx
|
|||
|
||||
const auto current = fmt::format("%s", setting->get());
|
||||
const auto list = setting->to_list();
|
||||
for (s32 index = 0; index <= list.size(); ++index)
|
||||
for (s32 index = 0; index <= static_cast<s32>(list.size()); ++index)
|
||||
{
|
||||
if (list[index] != current)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue