aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/ValueRangeSet.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics/ValueRangeSet.cs')
-rw-r--r--Ryujinx.Graphics/ValueRangeSet.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Graphics/ValueRangeSet.cs b/Ryujinx.Graphics/ValueRangeSet.cs
index 479f41ed..42125bce 100644
--- a/Ryujinx.Graphics/ValueRangeSet.cs
+++ b/Ryujinx.Graphics/ValueRangeSet.cs
@@ -76,7 +76,7 @@ namespace Ryujinx.Graphics
{
Ranges.RemoveAt(NewIndex + 1);
- Ranges[NewIndex] = new ValueRange<T>(Range.Start, Next.End, Range.Value);
+ Ranges[NewIndex] = new ValueRange<T>(Ranges[NewIndex].Start, Next.End, Range.Value);
}
}
}