mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-05-07 13:37:46 +00:00
rsx/overlays: Fix clang build
This commit is contained in:
parent
a318384142
commit
4780e7c8da
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue