Skip to content

Commit

Permalink
Show video backend and audio engine in title bar.
Browse files Browse the repository at this point in the history
Fixes issue 6276.
  • Loading branch information
RachelBryk committed Apr 25, 2013
1 parent d18b71c commit 3b732f6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Source/Core/Core/Src/Core.cpp
Expand Up @@ -680,7 +680,8 @@ void UpdateTitle()
u32 Speed = DrawnVideo * (100 * 1000) / (VideoInterface::TargetRefreshRate * ElapseTime);

// Settings are shown the same for both extended and summary info
std::string SSettings = StringFromFormat("%s %s", cpu_core_base->GetName(), _CoreParameter.bCPUThread ? "DC" : "SC");
std::string SSettings = StringFromFormat("%s %s - %s - %s", cpu_core_base->GetName(), _CoreParameter.bCPUThread ? "DC" : "SC",
_CoreParameter.m_strVideoBackend.c_str(), _CoreParameter.bDSPHLE ? "DSPHLE" : "DSPLLE");

// 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 interested.
Expand Down

0 comments on commit 3b732f6

Please sign in to comment.