summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorRachel Bryk <RachelBryk@gmail.com>2013-04-26 02:47:11 -0400
committerRachel Bryk <RachelBryk@gmail.com>2013-04-26 02:47:49 -0400
commit5afceca7a10a2d993e53ba348ee55836d7831f8e (patch)
tree0d9a022ccfe96e516074a6b2d4e756b18dad2b2a /Source/Core
parent3b732f695d7f06da54e97e517849be9e27e6ef13 (diff)
Apparently we can't trust m_strVideoBackend on osx.
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/Src/Core.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Core/Src/Core.cpp b/Source/Core/Core/Src/Core.cpp
index 661271e829..20cbc5086a 100644
--- a/Source/Core/Core/Src/Core.cpp
+++ b/Source/Core/Core/Src/Core.cpp
@@ -681,7 +681,7 @@ void UpdateTitle()
// Settings are shown the same for both extended and summary info
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");
+ g_video_backend->GetName().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.