mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Config: Port remaining Interface settings to new config system.
This commit is contained in:
@ -954,7 +954,7 @@ void UpdateTitle(u32 ElapseTime)
|
||||
else
|
||||
{
|
||||
SFPS = fmt::format("FPS: {:.0f} - VPS: {:.0f} - {:.0f}%", FPS, VPS, Speed);
|
||||
if (SConfig::GetInstance().m_InterfaceExtendedFPSInfo)
|
||||
if (Config::Get(Config::MAIN_EXTENDED_FPS_INFO))
|
||||
{
|
||||
// Use extended or summary information. The summary information does not print the ticks data,
|
||||
// that's more of a debugging interest, it can always be optional of course if someone is
|
||||
@ -980,7 +980,7 @@ void UpdateTitle(u32 ElapseTime)
|
||||
}
|
||||
|
||||
std::string message = fmt::format("{} | {} | {}", Common::scm_rev_str, SSettings, SFPS);
|
||||
if (SConfig::GetInstance().m_show_active_title)
|
||||
if (Config::Get(Config::MAIN_SHOW_ACTIVE_TITLE))
|
||||
{
|
||||
const std::string& title = SConfig::GetInstance().GetTitleDescription();
|
||||
if (!title.empty())
|
||||
|
Reference in New Issue
Block a user