use newer sdl2, make bigger stack

This commit is contained in:
lizzie 2026-01-28 19:03:55 +00:00
parent 0efc3483d2
commit d6830c979a
2 changed files with 7 additions and 4 deletions

View file

@ -169,11 +169,14 @@
}, },
"sdl2_ps4": { "sdl2_ps4": {
"package": "SDL2", "package": "SDL2",
"repo": "xinitrcn1/SDL", "repo": "libsdl-org/SDL",
"sha": "f577141fc4", "sha": "0c7042477a",
"key": "ps4", "key": "ps4",
"bundled": true, "bundled": true,
"skip_updates": true "skip_updates": true,
"patches": [
"0001-ps4.patch"
]
}, },
"moltenvk": { "moltenvk": {
"repo": "V380-Ori/Ryujinx.MoltenVK", "repo": "V380-Ori/Ryujinx.MoltenVK",

View file

@ -16,7 +16,7 @@
namespace Common { namespace Common {
#ifdef __OPENORBIS__ #ifdef __OPENORBIS__
constexpr size_t DEFAULT_STACK_SIZE = 128 * 4096; constexpr size_t DEFAULT_STACK_SIZE = 256 * 4096;
#else #else
constexpr size_t DEFAULT_STACK_SIZE = 512 * 4096; constexpr size_t DEFAULT_STACK_SIZE = 512 * 4096;
#endif #endif