aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorriperiperi <rhy3756547@hotmail.com>2024-02-22 09:43:22 +0000
committerGitHub <noreply@github.com>2024-02-22 10:43:22 +0100
commitba91f5d401bf5f9fc39aaa30feac2600e82f9c42 (patch)
tree11784631d815a16194662dbc2c644aafee55a81e /src
parent79f6c18a9b1c0b73a7a2324c916ecc371cfd02ad (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.cs1
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;
}
}
}