Explorar o código

RasterizerInterface: Correct size of CPU addresses to cache.

FernandoS27 %!s(int64=4) %!d(string=hai) anos
pai
achega
bb8bf740e9
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/video_core/rasterizer_accelerated.h

+ 1 - 1
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;
 };