mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-25 08:14:45 +02:00
Global: Fix some int/size_t conversion warnings.
This commit is contained in:
@@ -221,7 +221,7 @@ void ThreadManager::EnqueueTask(Task *task) {
|
||||
}
|
||||
|
||||
// Find a thread with no outstanding work.
|
||||
_assert_(maxThread <= global_->threads_.size());
|
||||
_assert_(maxThread <= (int)global_->threads_.size());
|
||||
for (int threadNum = minThread; threadNum < maxThread; threadNum++) {
|
||||
ThreadContext *thread = global_->threads_[threadNum];
|
||||
if (thread->queue_size.load() == 0) {
|
||||
|
||||
Reference in New Issue
Block a user