[Scummvm-git-logs] scummvm master -> b39bd7812317d80928d34dd4cc4c704eb0f2a946
aquadran
noreply at scummvm.org
Mon May 18 17:58:05 UTC 2026
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
b39bd78123 PS3: Use SDK macro for stack size
Commit: b39bd7812317d80928d34dd4cc4c704eb0f2a946
https://github.com/scummvm/scummvm/commit/b39bd7812317d80928d34dd4cc4c704eb0f2a946
Author: PaweÅ KoÅodziejski (aquadran at gmail.com)
Date: 2026-05-18T19:57:53+02:00
Commit Message:
PS3: Use SDK macro for stack size
This reverts commit 692565fc06b6e19a50bedc5771cd49ca0ac0207e.
Macro does not represent as amount but as bitfield.
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 31812cc1efa..767129c8694 100644
--- a/backends/platform/sdl/ps3/ps3-main.cpp
+++ b/backends/platform/sdl/ps3/ps3-main.cpp
@@ -30,7 +30,7 @@
#include <sys/process.h>
// Set program stack size from default 64KB to 256KB
-SYS_PROCESS_PARAM(1000, SYS_PROCESS_SPAWN_STACK_SIZE_256K)
+SYS_PROCESS_PARAM(1000, 0x40000)
int main(int argc, char *argv[]) {
More information about the Scummvm-git-logs
mailing list