mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2024-11-22 17:45:36 +01:00
fiber: Double default stack size
Stack overflow occurs with some guest applications
This commit is contained in:
parent
daf5c5060b
commit
59173ff7a7
@ -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} {}
|
||||
|
Loading…
Reference in New Issue
Block a user