mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
CoreTiming: Throttle Before Every Event Using Chrono
This commit is contained in:
@ -891,9 +891,9 @@ void Callback_NewField()
|
||||
|
||||
void UpdateTitle()
|
||||
{
|
||||
float FPS = g_perf_metrics.GetFPS();
|
||||
float VPS = g_perf_metrics.GetVPS();
|
||||
float Speed = g_perf_metrics.GetSpeed();
|
||||
const double FPS = g_perf_metrics.GetFPS();
|
||||
const double VPS = g_perf_metrics.GetVPS();
|
||||
const double Speed = 100.0 * g_perf_metrics.GetSpeed();
|
||||
|
||||
// Settings are shown the same for both extended and summary info
|
||||
const std::string SSettings = fmt::format(
|
||||
|
Reference in New Issue
Block a user