diff options
| author | Sam Belliveau <sam.belliveau@gmail.com> | 2023-01-06 17:21:17 -0500 |
|---|---|---|
| committer | Sam Belliveau <sam.belliveau@gmail.com> | 2023-01-06 17:21:17 -0500 |
| commit | bc1cc9eeb44f48a7333fc5acfefc0f2eaaa30fc3 (patch) | |
| tree | 81c20e42f250dafbaa83e702f1883fff57f6ed12 /Source/Core/AudioCommon | |
| parent | 2da39f7e00d01fbfc7ea2728231a6e52395f5b1e (diff) | |
CoreTiming: Throttle Before Every Event Using Chrono
Diffstat (limited to 'Source/Core/AudioCommon')
| -rw-r--r-- | Source/Core/AudioCommon/Mixer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/AudioCommon/Mixer.cpp b/Source/Core/AudioCommon/Mixer.cpp index f71c1e0c83..ae52dc7bb2 100644 --- a/Source/Core/AudioCommon/Mixer.cpp +++ b/Source/Core/AudioCommon/Mixer.cpp @@ -162,7 +162,7 @@ unsigned int Mixer::Mix(short* samples, unsigned int num_samples) memset(samples, 0, num_samples * 2 * sizeof(short)); // TODO: Determine how emulation speed will be used in audio - // const float emulation_speed = std::roundf(g_perf_metrics.GetSpeed()) / 100.f; + // const float emulation_speed = g_perf_metrics.GetSpeed(); const float emulation_speed = m_config_emulation_speed; const int timing_variance = m_config_timing_variance; if (m_config_audio_stretch) |
