mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 17:58:37 +12:00
Fix conflicts.
This commit is contained in:
parent
c09b0f511e
commit
9816ec3aa0
35 changed files with 99 additions and 103 deletions
|
@ -2409,7 +2409,7 @@ void RSXThread::Task()
|
|||
continue;
|
||||
}
|
||||
|
||||
Sleep(1);
|
||||
std::this_thread::sleep_for(std::chrono::milliseconds(1));
|
||||
}
|
||||
|
||||
is_vblank_stopped = true;
|
||||
|
@ -2446,7 +2446,7 @@ void RSXThread::Task()
|
|||
m_sem_flush.post_and_wait();
|
||||
}
|
||||
|
||||
Sleep(1);
|
||||
std::this_thread::sleep_for(std::chrono::milliseconds(1));
|
||||
continue;
|
||||
}
|
||||
|
||||
|
@ -2510,7 +2510,7 @@ void RSXThread::Task()
|
|||
|
||||
while (!is_vblank_stopped)
|
||||
{
|
||||
Sleep(1);
|
||||
std::this_thread::sleep_for(std::chrono::milliseconds(1));
|
||||
}
|
||||
|
||||
LOG_NOTICE(RSX, "RSX thread ended");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue