From 14815135bc92e7832dc5f939d1b0f8b196fcbbf1 Mon Sep 17 00:00:00 2001 From: ZachBacon Date: Tue, 25 Dec 2018 16:07:12 -0500 Subject: [PATCH] we need to release with the proper function in faudio --- src/wx/faudio.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/wx/faudio.cpp b/src/wx/faudio.cpp index 56482fe9..797c2885 100644 --- a/src/wx/faudio.cpp +++ b/src/wx/faudio.cpp @@ -67,7 +67,8 @@ bool GetFADevices(wxArrayString& names, wxArrayString& ids) } GetFADevices(fa, &names, &ids, NULL); - fa->Release(); + //fa->Release(); + FAudio_Release(fa); return true; }