summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-03-18 04:46:45 +0100
committerGitHub <noreply@github.com>2021-03-18 04:46:45 +0100
commit4aa8189328198ad3045f0f6d18d3baaefbedd4ab (patch)
tree101d484be1adbc15b2e81fd1395961ad85512e81
parentMerge pull request #6070 from Morph1984/sysver-11.0.1 (diff)
parentfiber: Double default stack size (diff)
downloadyuzu-4aa8189328198ad3045f0f6d18d3baaefbedd4ab.tar
yuzu-4aa8189328198ad3045f0f6d18d3baaefbedd4ab.tar.gz
yuzu-4aa8189328198ad3045f0f6d18d3baaefbedd4ab.tar.bz2
yuzu-4aa8189328198ad3045f0f6d18d3baaefbedd4ab.tar.lz
yuzu-4aa8189328198ad3045f0f6d18d3baaefbedd4ab.tar.xz
yuzu-4aa8189328198ad3045f0f6d18d3baaefbedd4ab.tar.zst
yuzu-4aa8189328198ad3045f0f6d18d3baaefbedd4ab.zip
-rw-r--r--src/common/fiber.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/fiber.cpp b/src/common/fiber.cpp
index 39532ff58..62010d762 100644
--- a/src/common/fiber.cpp
+++ b/src/common/fiber.cpp
@@ -11,7 +11,7 @@
namespace Common {
-constexpr std::size_t default_stack_size = 256 * 1024;
+constexpr std::size_t default_stack_size = 512 * 1024;
struct Fiber::FiberImpl {
FiberImpl() : stack{default_stack_size}, rewind_stack{default_stack_size} {}