DSPHLE: Fix build error in the libasnd uCode

This was a conflict between 8a144a735f4116650f59e6931fed86c1c00fa03c and b063f15dccf030e9b4fdeac189f779181d25db9c.
This commit is contained in:
Pokechu22 2022-06-24 19:29:31 -07:00
parent 75943a7a2c
commit 52f32e61dc

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);
} }