From f5b099abab653a5b489e21c69e032a5577c77e28 Mon Sep 17 00:00:00 2001 From: tildearrow Date: Sat, 25 Oct 2025 04:54:58 -0500 Subject: [PATCH] ASIO backend, part 3 this..... fixes it? (at least startup) --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 6cd86e251..b39daa9db 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -615,7 +615,7 @@ int main(int argc, char** argv) { } // co initialize ex - HRESULT coResult=CoInitializeEx(NULL,COINIT_MULTITHREADED); + HRESULT coResult=CoInitializeEx(NULL,COINIT_APARTMENTTHREADED); if (coResult!=S_OK) { logE("CoInitializeEx failed!"); }