mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 06:39:46 -06:00
IPC: Clear X1 when acknowledging a reply
Hardware tests indicate that IOS clears X1 when it acknowledges an IPC request.
This commit is contained in:
@ -629,6 +629,7 @@ void Kernel::UpdateIPC()
|
||||
|
||||
if (m_request_queue.size())
|
||||
{
|
||||
ClearX1();
|
||||
GenerateAck(m_request_queue.front());
|
||||
u32 command = m_request_queue.front();
|
||||
m_request_queue.pop_front();
|
||||
|
Reference in New Issue
Block a user