mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 06:25:46 +00:00
RasterizerInterface: Correct size of CPU addresses to cache.
This commit is contained in:
parent
2fd52e7d8b
commit
8e56d4a8ab
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…
Add table
Add a link
Reference in a new issue