diff options
author | riperiperi <rhy3756547@hotmail.com> | 2024-02-22 09:43:22 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-22 10:43:22 +0100 |
commit | ba91f5d401bf5f9fc39aaa30feac2600e82f9c42 (patch) | |
tree | 11784631d815a16194662dbc2c644aafee55a81e /src | |
parent | 79f6c18a9b1c0b73a7a2324c916ecc371cfd02ad (diff) |
Vulkan: Properly reset barrier batch when splitting due to mismatching flags (#6345)1.1.1207
Forgot to set the end variable here. Should stop it from crashing when this path is taken.
Diffstat (limited to 'src')
-rw-r--r-- | src/Ryujinx.Graphics.Vulkan/BarrierBatch.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Ryujinx.Graphics.Vulkan/BarrierBatch.cs b/src/Ryujinx.Graphics.Vulkan/BarrierBatch.cs index aa158f03..24642af2 100644 --- a/src/Ryujinx.Graphics.Vulkan/BarrierBatch.cs +++ b/src/Ryujinx.Graphics.Vulkan/BarrierBatch.cs @@ -144,6 +144,7 @@ namespace Ryujinx.Graphics.Vulkan i -= deleteCount; firstMatch = -1; + end = list.Count; } } } |