fix bitshit

This commit is contained in:
lizzie 2026-02-17 03:42:33 +00:00
parent bf98fc6891
commit 9e1c10ce12

View file

@ -114,7 +114,7 @@ private:
}
bool Test(u64 page) const {
return m_words[page / m_words.size()].test(page % m_words.size());
return m_words[page / 64].test(page % 64);
}
template <typename Func>