diff options
author | bunnei <bunneidev@gmail.com> | 2023-05-14 10:23:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-14 10:23:29 +0200 |
commit | 29c7176f559e41ee09e2a030d95c41c89f01d3a0 (patch) | |
tree | 685274f8b4000c9676bf7e41b6693b81c2e2d3f3 /src/video_core | |
parent | Merge pull request #10244 from liamwhite/lower-upper (diff) | |
parent | vulkan_common: fix incompatible property flags (diff) | |
download | yuzu-29c7176f559e41ee09e2a030d95c41c89f01d3a0.tar yuzu-29c7176f559e41ee09e2a030d95c41c89f01d3a0.tar.gz yuzu-29c7176f559e41ee09e2a030d95c41c89f01d3a0.tar.bz2 yuzu-29c7176f559e41ee09e2a030d95c41c89f01d3a0.tar.lz yuzu-29c7176f559e41ee09e2a030d95c41c89f01d3a0.tar.xz yuzu-29c7176f559e41ee09e2a030d95c41c89f01d3a0.tar.zst yuzu-29c7176f559e41ee09e2a030d95c41c89f01d3a0.zip |
Diffstat (limited to 'src/video_core')
-rw-r--r-- | src/video_core/vulkan_common/vulkan_memory_allocator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/vulkan_common/vulkan_memory_allocator.cpp b/src/video_core/vulkan_common/vulkan_memory_allocator.cpp index 1732866e0..e28a556f8 100644 --- a/src/video_core/vulkan_common/vulkan_memory_allocator.cpp +++ b/src/video_core/vulkan_common/vulkan_memory_allocator.cpp @@ -147,7 +147,7 @@ public: /// Returns whether this allocation is compatible with the arguments. [[nodiscard]] bool IsCompatible(VkMemoryPropertyFlags flags, u32 type_mask) const { - return (flags & property_flags) == property_flags && (type_mask & shifted_memory_type) != 0; + return (flags & property_flags) == flags && (type_mask & shifted_memory_type) != 0; } private: |