summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar David Marcec2018-10-07 14:19:55 +1100
committerGravatar David Marcec2018-10-07 14:19:55 +1100
commit2534af040ef42107aeeff16b21df2c488121b3d6 (patch)
tree14327eb31bfa97ba822872d561d75b413b950764 /src
parentFixed smo softlock (diff)
downloadyuzu-2534af040ef42107aeeff16b21df2c488121b3d6.tar.gz
yuzu-2534af040ef42107aeeff16b21df2c488121b3d6.tar.xz
yuzu-2534af040ef42107aeeff16b21df2c488121b3d6.zip
Fixed missing return
Softlock explanation: after effects are initialized in smo, nothing actually changes the state. It expects the state to always be initialized. With the previous testing, updating the states much like how we handle the memory pools continue to have the softlock(which is why I said it probably wasn't effects) after further examination it seems like effects need to be initialized but the state remains unchanged until further notice. For now, assertions are added for the aux buffers to see if they update, unable to check as I haven't gotten smo to actually update them yet.
Diffstat (limited to 'src')
-rw-r--r--src/audio_core/audio_renderer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio_core/audio_renderer.cpp b/src/audio_core/audio_renderer.cpp
index 9b7970d42..5d2feb1b9 100644
--- a/src/audio_core/audio_renderer.cpp
+++ b/src/audio_core/audio_renderer.cpp
@@ -58,7 +58,7 @@ public:
58 } 58 }
59 59
60 const EffectInStatus& GetInfo() const { 60 const EffectInStatus& GetInfo() const {
61 info; 61 return info;
62 } 62 }
63 63
64 EffectInStatus& Info() { 64 EffectInStatus& Info() {