소스 검색

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.
David Marcec 7 년 전
부모
커밋
2534af040e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/audio_core/audio_renderer.cpp

+ 1 - 1
src/audio_core/audio_renderer.cpp

@@ -58,7 +58,7 @@ public:
     }
 
     const EffectInStatus& GetInfo() const {
-        info;
+        return info;
     }
 
     EffectInStatus& Info() {