1
0
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:
Nekotekina 2020-05-17 22:53:18 +03:00
parent ae519200ed
commit 72fedccaba

View File

@ -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;
}