summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2015-01-15 18:20:58 -0500
committerGravatar bunnei2015-01-15 18:20:58 -0500
commit350c5a7e32f099eddc02bca7e6488deba1cdeab7 (patch)
tree113fb60a9e7cb86941f9288ae94a6a6059ea77a2 /src
parentMerge pull request #482 from yuriks/fix-vblank (diff)
downloadyuzu-350c5a7e32f099eddc02bca7e6488deba1cdeab7.tar.gz
yuzu-350c5a7e32f099eddc02bca7e6488deba1cdeab7.tar.xz
yuzu-350c5a7e32f099eddc02bca7e6488deba1cdeab7.zip
DSP: Removed useless spam log for SignalInterrupt
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/dsp_dsp.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/core/hle/service/dsp_dsp.cpp b/src/core/hle/service/dsp_dsp.cpp
index d4affdfbf..d5e39ea4b 100644
--- a/src/core/hle/service/dsp_dsp.cpp
+++ b/src/core/hle/service/dsp_dsp.cpp
@@ -23,11 +23,8 @@ void SignalInterrupt() {
23 // that check the DSP interrupt signal event to run. We should figure out the different types of 23 // that check the DSP interrupt signal event to run. We should figure out the different types of
24 // DSP interrupts, and trigger them at the appropriate times. 24 // DSP interrupts, and trigger them at the appropriate times.
25 25
26 if (interrupt_event == 0) { 26 if (interrupt_event != 0)
27 LOG_WARNING(Service_DSP, "cannot signal interrupt until DSP event has been created!"); 27 Kernel::SignalEvent(interrupt_event);
28 return;
29 }
30 Kernel::SignalEvent(interrupt_event);
31} 28}
32 29
33/** 30/**