Merge pull request #10782 from Pokechu22/dsp-hle-asnd-fix

DSPHLE: Add HLE version of libasnd ucode and fix build error
This commit is contained in:
Admiral H. Curtiss
2022-06-25 04:40:43 +02:00
committed by GitHub

View File

@ -87,7 +87,7 @@ void ASndUCode::Initialize()
void ASndUCode::Update() void ASndUCode::Update()
{ {
// This is dubious in general, since we set the interrupt parameter on m_mail_handler.PushMail // This is dubious in general, since we set the interrupt parameter on m_mail_handler.PushMail
if (!m_mail_handler.IsEmpty()) if (m_mail_handler.HasPending())
{ {
DSP::GenerateDSPInterruptFromDSPEmu(DSP::INT_DSP); DSP::GenerateDSPInterruptFromDSPEmu(DSP::INT_DSP);
} }