Browse Source

add history vector initialization

pull/82/head
Maufeat 8 months ago
parent
commit
f248e6f721
  1. 2
      src/core/hle/service/nvnflinger/buffer_queue_core.h

2
src/core/hle/service/nvnflinger/buffer_queue_core.h

@ -92,7 +92,7 @@ private:
bool is_allocating{}; bool is_allocating{};
mutable std::condition_variable_any is_allocating_condition; mutable std::condition_variable_any is_allocating_condition;
std::vector<BufferInfo> history;
std::vector<BufferInfo> history{8};
}; };
} // namespace Service::android } // namespace Service::android
Loading…
Cancel
Save