diff options
Diffstat (limited to 'Ryujinx.Cpu/Jit/JitMemoryAllocator.cs')
-rw-r--r-- | Ryujinx.Cpu/Jit/JitMemoryAllocator.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Cpu/Jit/JitMemoryAllocator.cs b/Ryujinx.Cpu/Jit/JitMemoryAllocator.cs index 27bb09cc..0cf35c17 100644 --- a/Ryujinx.Cpu/Jit/JitMemoryAllocator.cs +++ b/Ryujinx.Cpu/Jit/JitMemoryAllocator.cs @@ -6,6 +6,6 @@ namespace Ryujinx.Cpu.Jit public class JitMemoryAllocator : IJitMemoryAllocator { public IJitMemoryBlock Allocate(ulong size) => new JitMemoryBlock(size, MemoryAllocationFlags.None); - public IJitMemoryBlock Reserve(ulong size) => new JitMemoryBlock(size, MemoryAllocationFlags.Reserve); + public IJitMemoryBlock Reserve(ulong size) => new JitMemoryBlock(size, MemoryAllocationFlags.Reserve | MemoryAllocationFlags.Jit); } } |