diff options
| author | 2021-10-04 20:47:31 +0200 | |
|---|---|---|
| committer | 2021-10-04 20:47:31 +0200 | |
| commit | bb8bf740e9e80bfcd4bdb527aac2c7ad6a7ccff5 (patch) | |
| tree | 7e0084cff3866605043fe0c0b3b4d80f4b6e7e78 /src | |
| parent | Vulkan: Fix the master Semaphore (diff) | |
| download | yuzu-bb8bf740e9e80bfcd4bdb527aac2c7ad6a7ccff5.tar.gz yuzu-bb8bf740e9e80bfcd4bdb527aac2c7ad6a7ccff5.tar.xz yuzu-bb8bf740e9e80bfcd4bdb527aac2c7ad6a7ccff5.zip | |
RasterizerInterface: Correct size of CPU addresses to cache.
Diffstat (limited to '')
| -rw-r--r-- | src/video_core/rasterizer_accelerated.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/rasterizer_accelerated.h b/src/video_core/rasterizer_accelerated.h index ea879bfdd..249644e50 100644 --- a/src/video_core/rasterizer_accelerated.h +++ b/src/video_core/rasterizer_accelerated.h | |||
| @@ -42,7 +42,7 @@ private: | |||
| 42 | }; | 42 | }; |
| 43 | static_assert(sizeof(CacheEntry) == 8, "CacheEntry should be 8 bytes!"); | 43 | static_assert(sizeof(CacheEntry) == 8, "CacheEntry should be 8 bytes!"); |
| 44 | 44 | ||
| 45 | std::array<CacheEntry, 0x1000000> cached_pages; | 45 | std::array<CacheEntry, 0x2000000> cached_pages; |
| 46 | Core::Memory::Memory& cpu_memory; | 46 | Core::Memory::Memory& cpu_memory; |
| 47 | }; | 47 | }; |
| 48 | 48 | ||