diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2018-09-13 16:33:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-13 16:33:06 +0200 |
commit | 4d228e66b45a6a3859decde6b2452c78728f8958 (patch) | |
tree | 9ca9e38fa99746af273479a6abd9e48d76fdb914 /drivers/unix/os_unix.cpp | |
parent | 68f224a50483c39c6d13141c0ceb26549ad2579f (diff) | |
parent | 01c3c1a07bfbaf6df8b1154e5ef31ecc890b03a3 (diff) | |
download | redot-engine-4d228e66b45a6a3859decde6b2452c78728f8958.tar.gz |
Merge pull request #22030 from Faless/sockets_fixes
Properly initialize Winsock on startup
Diffstat (limited to 'drivers/unix/os_unix.cpp')
-rw-r--r-- | drivers/unix/os_unix.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/unix/os_unix.cpp b/drivers/unix/os_unix.cpp index 1225d00aad..9936c95cf9 100644 --- a/drivers/unix/os_unix.cpp +++ b/drivers/unix/os_unix.cpp @@ -139,6 +139,8 @@ void OS_Unix::initialize_core() { } void OS_Unix::finalize_core() { + + NetSocketPosix::cleanup(); } void OS_Unix::alert(const String &p_alert, const String &p_title) { |