diff options
| author | Tillmann Karras <tilkax@gmail.com> | 2025-08-30 03:04:43 +0100 |
|---|---|---|
| committer | Tillmann Karras <tilkax@gmail.com> | 2025-08-30 03:05:35 +0100 |
| commit | 63257d1ee9773e55c058ad65700cbfb212fd70fe (patch) | |
| tree | 0ab05cc60c17de460546b0a9ea2f527925a5206f | |
| parent | 18f0bd1d4b31204eb858f8c6e540f3f300a4e688 (diff) | |
CoreTiming: set default overclock factors to 1.0
I'm not aware of any issue here but let's set meaningful defaults
anyway.
| -rw-r--r-- | Source/Core/Core/CoreTiming.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Core/CoreTiming.h b/Source/Core/Core/CoreTiming.h index 84311291ec..25df6d6c90 100644 --- a/Source/Core/Core/CoreTiming.h +++ b/Source/Core/Core/CoreTiming.h @@ -203,8 +203,8 @@ private: EventType* m_ev_lost = nullptr; CPUThreadConfigCallback::ConfigChangedCallbackID m_registered_config_callback_id; - float m_config_oc_factor = 0.0f; - float m_config_oc_inv_factor = 0.0f; + float m_config_oc_factor = 1.0f; + float m_config_oc_inv_factor = 1.0f; bool m_config_sync_on_skip_idle = false; s64 m_throttle_reference_cycle = 0; |
