Silence -Wsign-compare warnings.
This commit is contained in:
parent
87eca546b2
commit
32391cffdd
4 changed files with 9 additions and 9 deletions
|
@ -324,7 +324,7 @@ void PerformConversion(ConversionConfiguration& cvt) {
|
|||
|
||||
u32* output_buffer = reinterpret_cast<u32*>(data_buffer.get());
|
||||
|
||||
for (int i = 0; i < num_tiles; ++i) {
|
||||
for (size_t i = 0; i < num_tiles; ++i) {
|
||||
int image_strip_width = 0;
|
||||
int output_stride = 0;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue