Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #9853 from Bonta0/sinocancel
SI: Don't cancel transfer with TSTART=0
  • Loading branch information
JMC47 committed Jun 30, 2021
2 parents 04a1c2e + aaea38b commit 6042df7
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Source/Core/Core/HW/SI/SI.cpp
Expand Up @@ -511,13 +511,11 @@ void RegisterMMIO(MMIO::Mapping* mmio, u32 base)
// be careful: run si-buffer after updating the INT flags
if (tmp_com_csr.TSTART)
{
if (s_com_csr.TSTART)
CoreTiming::RemoveEvent(s_tranfer_pending_event);
s_com_csr.TSTART = 1;
RunSIBuffer(0, 0);
}
else if (s_com_csr.TSTART)
{
CoreTiming::RemoveEvent(s_tranfer_pending_event);
}

if (!s_com_csr.TSTART)
UpdateInterrupts();
Expand Down

0 comments on commit 6042df7

Please sign in to comment.