mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-02 13:27:52 +00:00
DSP: Removed useless spam log for SignalInterrupt
This commit is contained in:
parent
4b47ed6194
commit
350c5a7e32
1 changed files with 2 additions and 5 deletions
|
@ -23,10 +23,7 @@ void SignalInterrupt() {
|
||||||
// that check the DSP interrupt signal event to run. We should figure out the different types of
|
// that check the DSP interrupt signal event to run. We should figure out the different types of
|
||||||
// DSP interrupts, and trigger them at the appropriate times.
|
// DSP interrupts, and trigger them at the appropriate times.
|
||||||
|
|
||||||
if (interrupt_event == 0) {
|
if (interrupt_event != 0)
|
||||||
LOG_WARNING(Service_DSP, "cannot signal interrupt until DSP event has been created!");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
Kernel::SignalEvent(interrupt_event);
|
Kernel::SignalEvent(interrupt_event);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue