summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-10-07 16:32:19 +0200
committerbunnei <bunneidev@gmail.com>2015-10-07 16:32:19 +0200
commit2599d34c96368cb01c80534ca076cfe79445fb88 (patch)
tree500eb7180aae531f23d29bec2ea054c661c01cc5 /src/core
parentMerge pull request #1164 from kemenaran/qt-high-dpi-fixes (diff)
parentSilence -Wsign-compare warnings. (diff)
downloadyuzu-2599d34c96368cb01c80534ca076cfe79445fb88.tar
yuzu-2599d34c96368cb01c80534ca076cfe79445fb88.tar.gz
yuzu-2599d34c96368cb01c80534ca076cfe79445fb88.tar.bz2
yuzu-2599d34c96368cb01c80534ca076cfe79445fb88.tar.lz
yuzu-2599d34c96368cb01c80534ca076cfe79445fb88.tar.xz
yuzu-2599d34c96368cb01c80534ca076cfe79445fb88.tar.zst
yuzu-2599d34c96368cb01c80534ca076cfe79445fb88.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/thread.cpp2
-rw-r--r--src/core/hw/y2r.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp
index c10126513..00fa995f6 100644
--- a/src/core/hle/kernel/thread.cpp
+++ b/src/core/hle/kernel/thread.cpp
@@ -220,7 +220,7 @@ static void SwitchContext(Thread* new_thread) {
// Clean up the thread's wait_objects, they'll be restored if needed during
// the svcWaitSynchronization call
- for (int i = 0; i < new_thread->wait_objects.size(); ++i) {
+ for (size_t i = 0; i < new_thread->wait_objects.size(); ++i) {
SharedPtr<WaitObject> object = new_thread->wait_objects[i];
object->RemoveWaitingThread(new_thread);
}
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;