aboutsummaryrefslogtreecommitdiff
path: root/src/audio_core/audio_renderer.cpp
diff options
context:
space:
mode:
authorDavid Marcec <dmarcecguzman@gmail.com>2018-10-07 14:19:55 +1100
committerDavid Marcec <dmarcecguzman@gmail.com>2018-10-07 14:19:55 +1100
commit2534af040ef42107aeeff16b21df2c488121b3d6 (patch)
tree14327eb31bfa97ba822872d561d75b413b950764 /src/audio_core/audio_renderer.cpp
parent2de52e3af65e71df8a1ef00c9bcfcaa9f67330c3 (diff)
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/audio_core/audio_renderer.cpp')
-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 9b7970d421..5d2feb1b97 100644
--- a/src/audio_core/audio_renderer.cpp
+++ b/src/audio_core/audio_renderer.cpp
@@ -58,7 +58,7 @@ public:
}
const EffectInStatus& GetInfo() const {
- info;
+ return info;
}
EffectInStatus& Info() {