Merge pull request #12599 from lioncash/vertman

VertexManagerBase: Initialize m_ticks_elapsed on construction
This commit is contained in:
Admiral H. Curtiss 2024-03-02 14:11:23 +01:00 committed by GitHub
commit 8840f7f8bc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -247,7 +247,7 @@ private:
bool m_allow_background_execution = true;
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_after_present_event;