diff --git a/README.md b/README.md index a2c1f276d..040678d80 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ yuzu emulator early access ============= -This is the source code for early-access 1514. +This is the source code for early-access 1515. ## Legal Notice diff --git a/src/common/fiber.cpp b/src/common/fiber.cpp index 39532ff58..62010d762 100755 --- 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} {}