From c10fb7efcc1473a5504150c5e0bc2ca2c7902fb5 Mon Sep 17 00:00:00 2001 From: pineappleEA Date: Thu, 11 Mar 2021 00:17:09 +0100 Subject: [PATCH] early-access version 1515 --- README.md | 2 +- src/common/fiber.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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} {}