Explorar el Código

buffer_cache: Try to fix MinGW build

ReinUsesLisp hace 7 años
padre
commit
83050c9495
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/video_core/buffer_cache.h

+ 1 - 1
src/video_core/buffer_cache.h

@@ -250,7 +250,7 @@ private:
         if (auto entry = TryGetReservedBuffer(host_ptr)) {
             return entry;
         }
-        return std::make_shared<Buffer::element_type>(cpu_addr, host_ptr);
+        return std::make_shared<CachedBuffer<BufferStorageType>>(cpu_addr, host_ptr);
     }
 
     Buffer TryGetReservedBuffer(u8* host_ptr) {