Skip to content

Commit

Permalink
Merge pull request #8215 from LunicLynx/fix-text-differ
Browse files Browse the repository at this point in the history
fix-text-differ
  • Loading branch information
DustinCampbell authored Feb 4, 2023
2 parents 6f27afe + bfc7003 commit 6b65fb8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public ref int this[int index]
// Does this index fall within page? If not, acquire the appropriate page.
if (index < page.Start || index >= page.Start + page.Length)
{
page = _pages[index % PageSize];
page = _pages[index / PageSize];
_page = page;
}

Expand Down

0 comments on commit 6b65fb8

Please sign in to comment.