[Scummvm-git-logs] scummvm master -> d0c1da03c8e80314727f191bfbb24eda317a21cd

aquadran noreply at scummvm.org
Wed Feb 9 21:08:10 UTC 2022


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
d0c1da03c8 PS3: Lower down stack size to 256KB


Commit: d0c1da03c8e80314727f191bfbb24eda317a21cd
    https://github.com/scummvm/scummvm/commit/d0c1da03c8e80314727f191bfbb24eda317a21cd
Author: Paweł Kołodziejski (aquadran at gmail.com)
Date: 2022-02-09T22:08:04+01:00

Commit Message:
PS3: Lower down stack size to 256KB

Changed paths:
    backends/platform/sdl/ps3/ps3-main.cpp


diff --git a/backends/platform/sdl/ps3/ps3-main.cpp b/backends/platform/sdl/ps3/ps3-main.cpp
index 5f3ed2ea524..5138bd0a267 100644
--- a/backends/platform/sdl/ps3/ps3-main.cpp
+++ b/backends/platform/sdl/ps3/ps3-main.cpp
@@ -29,8 +29,8 @@
 #include <net/net.h>
 #include <sys/process.h>
 
-// Set program stack size from default 64KB to 1MB
-SYS_PROCESS_PARAM(1000, 0x100000)
+// Set program stack size from default 64KB to 256KB
+SYS_PROCESS_PARAM(1000, 0x40000)
 
 int main(int argc, char *argv[]) {
 




More information about the Scummvm-git-logs mailing list