mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-17 06:18:30 -05:00
Silence -Wsign-compare warnings.
This commit is contained in:
@ -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);
|
||||
}
|
||||
|
@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user