aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Vulkan/MemoryAllocator.cs
diff options
context:
space:
mode:
authorMary-nyan <mary@mary.zone>2022-12-01 19:11:56 +0100
committerGitHub <noreply@github.com>2022-12-01 19:11:56 +0100
commitce92e8cd043c6beeca6969920bc5e3b8eff5f57a (patch)
tree0c2a8c829f199526eb6c55e4c8af2b6c23d29d0b /Ryujinx.Graphics.Vulkan/MemoryAllocator.cs
parent456fc04007b7274f6e75d6348c5a4e955f85b488 (diff)
chore: Update Silk.NET to 2.16.0 (#3953)1.1.407
Diffstat (limited to 'Ryujinx.Graphics.Vulkan/MemoryAllocator.cs')
-rw-r--r--Ryujinx.Graphics.Vulkan/MemoryAllocator.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Graphics.Vulkan/MemoryAllocator.cs b/Ryujinx.Graphics.Vulkan/MemoryAllocator.cs
index 0b05ef92..eea4e60b 100644
--- a/Ryujinx.Graphics.Vulkan/MemoryAllocator.cs
+++ b/Ryujinx.Graphics.Vulkan/MemoryAllocator.cs
@@ -33,7 +33,7 @@ namespace Ryujinx.Graphics.Vulkan
return default;
}
- bool map = flags.HasFlag(MemoryPropertyFlags.MemoryPropertyHostVisibleBit);
+ bool map = flags.HasFlag(MemoryPropertyFlags.HostVisibleBit);
return Allocate(memoryTypeIndex, requirements.Size, requirements.Alignment, map);
}