summaryrefslogtreecommitdiffstats
path: root/src/core/hw
diff options
context:
space:
mode:
authorRohit Nirmal <rohitnirmal9@gmail.com>2015-10-07 04:28:19 +0200
committerRohit Nirmal <rohitnirmal9@gmail.com>2015-10-07 05:16:15 +0200
commit32391cffdda059f23258b535f386732084d1cac9 (patch)
tree500eb7180aae531f23d29bec2ea054c661c01cc5 /src/core/hw
parentMerge pull request #1164 from kemenaran/qt-high-dpi-fixes (diff)
downloadyuzu-32391cffdda059f23258b535f386732084d1cac9.tar
yuzu-32391cffdda059f23258b535f386732084d1cac9.tar.gz
yuzu-32391cffdda059f23258b535f386732084d1cac9.tar.bz2
yuzu-32391cffdda059f23258b535f386732084d1cac9.tar.lz
yuzu-32391cffdda059f23258b535f386732084d1cac9.tar.xz
yuzu-32391cffdda059f23258b535f386732084d1cac9.tar.zst
yuzu-32391cffdda059f23258b535f386732084d1cac9.zip
Diffstat (limited to 'src/core/hw')
-rw-r--r--src/core/hw/y2r.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hw/y2r.cpp b/src/core/hw/y2r.cpp
index 15f96ced8..48c45564f 100644
--- a/src/core/hw/y2r.cpp
+++ b/src/core/hw/y2r.cpp
@@ -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;