mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 08:51:28 +12:00
Some things improved
shared_mutex_t implemented GUI Emu Callbacks rewritten fxm::import, fxm::import_always implemented cellMsgDialog rewritten Emu.CallAfter improved (returns std::future)
This commit is contained in:
parent
9d68c16c62
commit
8ae3401ffa
77 changed files with 1814 additions and 1831 deletions
|
@ -293,7 +293,7 @@ void PPUThread::task()
|
|||
{
|
||||
while (true)
|
||||
{
|
||||
if (m_state.load() && check_status()) break;
|
||||
if (m_state && check_status()) break;
|
||||
|
||||
// decode instruction using specified decoder
|
||||
m_dec->DecodeMemory(PC);
|
||||
|
@ -310,7 +310,7 @@ void PPUThread::task()
|
|||
const auto func = exec_map[PC / 4];
|
||||
|
||||
// check status
|
||||
if (!m_state.load())
|
||||
if (!m_state)
|
||||
{
|
||||
// call interpreter function
|
||||
func(*this, { vm::ps3::read32(PC) });
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue