diff options
author | Yotam Barnoy | 2010-05-23 19:31:38 +0000 |
---|---|---|
committer | Yotam Barnoy | 2010-05-23 19:31:38 +0000 |
commit | e5d239b779ba24e75f1f911b023c6c94b63ffefd (patch) | |
tree | 3bae41727ade8bfcc4c7a2919f43da170b619b63 /backends/platform | |
parent | 088ad439669c3b535bb66e8773aaf706ba70e5fa (diff) | |
download | scummvm-rg350-e5d239b779ba24e75f1f911b023c6c94b63ffefd.tar.gz scummvm-rg350-e5d239b779ba24e75f1f911b023c6c94b63ffefd.tar.bz2 scummvm-rg350-e5d239b779ba24e75f1f911b023c6c94b63ffefd.zip |
PSP: changed thread stack sizes to prevent crashes in COMI
svn-id: r49168
Diffstat (limited to 'backends/platform')
-rw-r--r-- | backends/platform/psp/thread.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/platform/psp/thread.h b/backends/platform/psp/thread.h index 5879d044ed..d395d6713e 100644 --- a/backends/platform/psp/thread.h +++ b/backends/platform/psp/thread.h @@ -36,8 +36,8 @@ enum ThreadPriority { enum StackSizes { STACK_AUDIO_THREAD = 16 * 1024, - STACK_TIMER_THREAD = 4 * 1024, - STACK_DISPLAY_THREAD = 4 * 1024, + STACK_TIMER_THREAD = 16 * 1024, + STACK_DISPLAY_THREAD = 2 * 1024, STACK_POWER_THREAD = 4 * 1024 }; |