Merge pull request #12599 from lioncash/vertman
VertexManagerBase: Initialize m_ticks_elapsed on construction
This commit is contained in:
commit
8840f7f8bc
|
@ -247,7 +247,7 @@ private:
|
||||||
bool m_allow_background_execution = true;
|
bool m_allow_background_execution = true;
|
||||||
|
|
||||||
std::unique_ptr<CustomShaderCache> m_custom_shader_cache;
|
std::unique_ptr<CustomShaderCache> m_custom_shader_cache;
|
||||||
u64 m_ticks_elapsed;
|
u64 m_ticks_elapsed = 0;
|
||||||
|
|
||||||
Common::EventHook m_frame_end_event;
|
Common::EventHook m_frame_end_event;
|
||||||
Common::EventHook m_after_present_event;
|
Common::EventHook m_after_present_event;
|
||||||
|
|
Loading…
Reference in New Issue