mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 21:07:52 +00:00
RasterizerInterface: Correct size of CPU addresses to cache.
This commit is contained in:
parent
7f4de3466a
commit
bb8bf740e9
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ private:
|
|||
};
|
||||
static_assert(sizeof(CacheEntry) == 8, "CacheEntry should be 8 bytes!");
|
||||
|
||||
std::array<CacheEntry, 0x1000000> cached_pages;
|
||||
std::array<CacheEntry, 0x2000000> cached_pages;
|
||||
Core::Memory::Memory& cpu_memory;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue