summaryrefslogtreecommitdiff
path: root/src/thread/thread_os2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread/thread_os2.cpp')
-rw-r--r--src/thread/thread_os2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread/thread_os2.cpp b/src/thread/thread_os2.cpp
index 93f04cac1..2dcb8288f 100644
--- a/src/thread/thread_os2.cpp
+++ b/src/thread/thread_os2.cpp
@@ -38,7 +38,7 @@ public:
param(param),
self_destruct(self_destruct)
{
- thread = _beginthread(stThreadProc, NULL, 32768, this);
+ thread = _beginthread(stThreadProc, NULL, 1048576, this);
}
/* virtual */ bool Exit()