Browse Source

RasterizerInterface: Correct size of CPU addresses to cache.

nce_cpp
FernandoS27 4 years ago
parent
commit
8e56d4a8ab
  1. 2
      src/video_core/rasterizer_accelerated.h

2
src/video_core/rasterizer_accelerated.h

@ -42,7 +42,7 @@ private:
}; };
static_assert(sizeof(CacheEntry) == 8, "CacheEntry should be 8 bytes!"); 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; Core::Memory::Memory& cpu_memory;
}; };

Loading…
Cancel
Save