From 800c1cc245eaf4d391544378080a059adb13b657 Mon Sep 17 00:00:00 2001 From: fallenoak Date: Mon, 30 Nov 2020 23:41:46 -0600 Subject: [PATCH] chore(thread): add missing windows stub for SThread::Create --- storm/thread/SThread.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/storm/thread/SThread.cpp b/storm/thread/SThread.cpp index 0d842a6..24c979d 100644 --- a/storm/thread/SThread.cpp +++ b/storm/thread/SThread.cpp @@ -4,6 +4,7 @@ int32_t SThread::Create(uint32_t (*threadProc)(void*), void* param, SThread& thread, char* threadName, uint32_t a5) { #if defined(WHOA_PLATFORM_WIN) // TODO implement + return 0; #endif #if defined(WHOA_PLATFORM_MAC) || defined(WHOA_PLATFORM_LINUX)