mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-04-10 03:18:55 +02:00
fix bitshit
This commit is contained in:
parent
bf98fc6891
commit
9e1c10ce12
1 changed files with 1 additions and 1 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue