mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-22 18:53:28 +01:00
rsx_utils.h: fix signed/unsigned comparison
This commit is contained in:
parent
ae519200ed
commit
72fedccaba
@ -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…
Reference in New Issue
Block a user