mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-11 01:08:39 +12:00
rsx_utils.h: fix signed/unsigned comparison
This commit is contained in:
parent
ae519200ed
commit
72fedccaba
1 changed files with 1 additions and 1 deletions
|
@ -930,7 +930,7 @@ namespace rsx
|
|||
reserve(initial_size);
|
||||
_size = initial_size;
|
||||
|
||||
for (int n = 0; n < initial_size; ++n)
|
||||
for (u32 n = 0; n < initial_size; ++n)
|
||||
{
|
||||
_data[n] = val;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue