Browse Source

buffer_cache: Silence implicit cast warning

nce_cpp
ReinUsesLisp 5 years ago
parent
commit
21e08723e7
  1. 2
      src/video_core/buffer_cache/buffer_cache.h

2
src/video_core/buffer_cache/buffer_cache.h

@ -99,7 +99,7 @@ class BufferCache {
};
public:
static constexpr u32 DEFAULT_SKIP_CACHE_SIZE = 4_KiB;
static constexpr u32 DEFAULT_SKIP_CACHE_SIZE = static_cast<u32>(4_KiB);
explicit BufferCache(VideoCore::RasterizerInterface& rasterizer_,
Tegra::Engines::Maxwell3D& maxwell3d_,

Loading…
Cancel
Save