summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFernandoS27 <fsahmkow27@gmail.com>2021-10-04 20:47:31 +0200
committerFernandoS27 <fsahmkow27@gmail.com>2021-10-04 20:47:31 +0200
commitbb8bf740e9e80bfcd4bdb527aac2c7ad6a7ccff5 (patch)
tree7e0084cff3866605043fe0c0b3b4d80f4b6e7e78 /src
parent7f4de3466ac60624268a3e99363409867261e055 (diff)
RasterizerInterface: Correct size of CPU addresses to cache.
Diffstat (limited to 'src')
-rw-r--r--src/video_core/rasterizer_accelerated.h2
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:
};
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;
};