diff options
| author | 2023-12-19 15:24:13 -0500 | |
|---|---|---|
| committer | 2023-12-19 15:24:13 -0500 | |
| commit | 93c19a40bf9b999ad15c66a4afba9bfb0479ba4f (patch) | |
| tree | b1b3922a8d0d3048db7198b2918332a413517e09 /src | |
| parent | nce: fix read size in simd immediate emulation (diff) | |
| download | yuzu-93c19a40bf9b999ad15c66a4afba9bfb0479ba4f.tar.gz yuzu-93c19a40bf9b999ad15c66a4afba9bfb0479ba4f.tar.xz yuzu-93c19a40bf9b999ad15c66a4afba9bfb0479ba4f.zip | |
nce: increase handler stack size
Diffstat (limited to '')
| -rw-r--r-- | src/core/arm/nce/arm_nce.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/arm/nce/arm_nce.cpp b/src/core/arm/nce/arm_nce.cpp index 1311e66a9..123b3da7e 100644 --- a/src/core/arm/nce/arm_nce.cpp +++ b/src/core/arm/nce/arm_nce.cpp | |||
| @@ -39,7 +39,7 @@ fpsimd_context* GetFloatingPointState(mcontext_t& host_ctx) { | |||
| 39 | } | 39 | } |
| 40 | 40 | ||
| 41 | using namespace Common::Literals; | 41 | using namespace Common::Literals; |
| 42 | constexpr u32 StackSize = 32_KiB; | 42 | constexpr u32 StackSize = 128_KiB; |
| 43 | 43 | ||
| 44 | } // namespace | 44 | } // namespace |
| 45 | 45 | ||