You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The previous stub implementation was fine, but with the introduction of the session enumerator, Special K cannot be used in any game without leaking memory and quickly crashing (unless I activate a Wine-specific workaround added in Special K 24.10.19).
Here is the implementation of Special K's session enumeration if it helps. This works just fine on Windows with no leaks or the crazy number of sessions returned by IAudioSessionEnumerator::GetCount (...).
While reviewing the changes above, I noticed a problem with the Critical Section guarding the session list.
Critical Section guarding audio sessions is entered twice, never exited. 2762b7a
I think the second sessions_lock () should be sessions_unlock ()
The text was updated successfully, but these errors were encountered:
Changes introduced in Add implementation for IAudioSessionEnumerator are preventing Special K from working.
The previous stub implementation was fine, but with the introduction of the session enumerator, Special K cannot be used in any game without leaking memory and quickly crashing (unless I activate a Wine-specific workaround added in Special K 24.10.19).
Here is the implementation of Special K's session enumeration if it helps. This works just fine on Windows with no leaks or the crazy number of sessions returned by
IAudioSessionEnumerator::GetCount (...)
.While reviewing the changes above, I noticed a problem with the Critical Section guarding the session list.
I think the second
sessions_lock ()
should besessions_unlock ()
The text was updated successfully, but these errors were encountered: