Skip to content

Commit

Permalink
One more memory addressing fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Jack Baker committed May 23, 2022
1 parent 5e0add4 commit 0ea46bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/cetus.js
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ class Cetus {
const entryIndex = realAddressToIndex(entry, memType);
if (entry < lowerBound ||
entry > upperBound ||
comparator(memory[entryIndex], this._savedMemory[entryIndex]) == false) {
comparator(memory[entryIndex], this._savedMemory[entry]) == false) {
delete this._searchSubset[entry];
}
else {
Expand Down

0 comments on commit 0ea46bc

Please sign in to comment.