mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix comparison
This commit is contained in:
parent
954bd69e30
commit
2b1d57257a
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ bool ThreadManager::TeardownTask(Task *task, bool enqueue) {
|
|||
if (task->Type() == TaskType::CPU_COMPUTE) {
|
||||
global_->compute_queue.push_back(task);
|
||||
global_->compute_queue_size++;
|
||||
} else if (task->Type() == TaskType::CPU_COMPUTE) {
|
||||
} else if (task->Type() == TaskType::IO_BLOCKING) {
|
||||
global_->io_queue.push_back(task);
|
||||
global_->io_queue_size++;
|
||||
} else {
|
||||
|
|
Loading…
Add table
Reference in a new issue