mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-08 16:01:42 +12:00
Minor style change
This commit is contained in:
parent
8175630619
commit
2f7fe35f5c
42 changed files with 329 additions and 381 deletions
|
@ -300,7 +300,7 @@ void Emulator::Pause()
|
|||
|
||||
for (auto& t : GetCPU().GetAllThreads())
|
||||
{
|
||||
t->Sleep(); // trigger status check
|
||||
t->sleep(); // trigger status check
|
||||
}
|
||||
|
||||
SendDbgCommand(DID_PAUSED_EMU);
|
||||
|
@ -332,7 +332,7 @@ void Emulator::Resume()
|
|||
|
||||
for (auto& t : GetCPU().GetAllThreads())
|
||||
{
|
||||
t->Awake(); // untrigger status check and signal
|
||||
t->awake(); // untrigger status check and signal
|
||||
}
|
||||
|
||||
SendDbgCommand(DID_RESUMED_EMU);
|
||||
|
@ -359,7 +359,7 @@ void Emulator::Stop()
|
|||
{
|
||||
std::lock_guard<std::mutex> lock(t->mutex);
|
||||
|
||||
t->Sleep(); // trigger status check
|
||||
t->sleep(); // trigger status check
|
||||
|
||||
t->cv.notify_one(); // signal
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue