summaryrefslogtreecommitdiff
path: root/src/thread
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2014-12-24 17:17:18 +0000
committerfrosch <frosch@openttd.org>2014-12-24 17:17:18 +0000
commit396dde16363a6890f71a9d3273b62e00f9d4acc3 (patch)
treee613431bb76b33478f513b28aecefdf5ab0c3180 /src/thread
parentac13e399d05e226a1c1140f818a9e20ac110110d (diff)
downloadopenttd-396dde16363a6890f71a9d3273b62e00f9d4acc3.tar.xz
(svn r27092) -Fix/Add [FS#6186]: Compilation on OS/2 (smedles)
Diffstat (limited to 'src/thread')
-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()