diff options
author | bunnei <bunneidev@gmail.com> | 2021-03-18 04:46:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-18 04:46:45 +0100 |
commit | 4aa8189328198ad3045f0f6d18d3baaefbedd4ab (patch) | |
tree | 101d484be1adbc15b2e81fd1395961ad85512e81 /src | |
parent | Merge pull request #6070 from Morph1984/sysver-11.0.1 (diff) | |
parent | fiber: Double default stack size (diff) | |
download | yuzu-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 |
Diffstat (limited to 'src')
-rw-r--r-- | src/common/fiber.cpp | 2 |
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} {} |