Fix missed CachedMappedBufferView initialisation

This commit is contained in:
Billy Laws 2023-03-25 22:52:09 +00:00
parent 7bfe63f679
commit bbe4872a95
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ namespace skyline::gpu::interconnect::maxwell3d {
public:
ConstantBufferSelectorState(dirty::Handle dirtyHandle, DirtyManager &manager, const EngineRegisters &engine);
CachedMappedBufferView view;
CachedMappedBufferView view{};
void Flush(InterconnectContext &ctx, size_t minSize = 0);

View File

@ -75,7 +75,7 @@ namespace skyline::gpu::interconnect::maxwell3d {
std::array<Counter, static_cast<u32>(CounterType::MaxValue)> counters;
CachedMappedBufferView view; //!< Cached view for looking up query buffers from IOVAs
CachedMappedBufferView view{}; //!< Cached view for looking up query buffers from IOVAs
std::unordered_set<u64> usedQueryAddresses;