summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorAdmiral H. Curtiss <pikachu025@gmail.com>2024-03-02 14:11:23 +0100
committerGitHub <noreply@github.com>2024-03-02 14:11:23 +0100
commit8840f7f8bc218846ca5950b59da59997b5784d3a (patch)
tree3bd3c1bcc2568b25a8a54f9200266847565e1cae /Source/Core
parent349e21aa3ab16e48c522b7e2abfc38a508a6cf68 (diff)
parent7bf77a56f48ebc42fd94eac9a7f557bbc093f12a (diff)
Merge pull request #12599 from lioncash/vertman
VertexManagerBase: Initialize m_ticks_elapsed on construction
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/VideoCommon/VertexManagerBase.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/VertexManagerBase.h b/Source/Core/VideoCommon/VertexManagerBase.h
index 50032419bd..c1248972da 100644
--- a/Source/Core/VideoCommon/VertexManagerBase.h
+++ b/Source/Core/VideoCommon/VertexManagerBase.h
@@ -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;