summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VideoConfig.cpp
diff options
context:
space:
mode:
authorDolphin Bot <dolphin-emu-bot@users.noreply.github.com>2014-07-09 18:06:57 +0200
committerDolphin Bot <dolphin-emu-bot@users.noreply.github.com>2014-07-09 18:06:57 +0200
commit7b754d6f99e394887869f8b58864a649ea3e9c39 (patch)
treea6e1a344f713fe245495a00cda987185b65ac501 /Source/Core/VideoCommon/VideoConfig.cpp
parent058f907f91bd15594b998f1d5c11893d2c6dd779 (diff)
parent95b579746f80d477eedd2ba43fa403b570620986 (diff)
Merge pull request #591 from Armada651/pref_log
FPSCounter: Add "Log render time to file" feature.
Diffstat (limited to 'Source/Core/VideoCommon/VideoConfig.cpp')
-rw-r--r--Source/Core/VideoCommon/VideoConfig.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/VideoConfig.cpp b/Source/Core/VideoCommon/VideoConfig.cpp
index c01b7e5461..77e4eb819c 100644
--- a/Source/Core/VideoCommon/VideoConfig.cpp
+++ b/Source/Core/VideoCommon/VideoConfig.cpp
@@ -57,7 +57,7 @@ void VideoConfig::Load(const std::string& ini_file)
settings->Get("UseRealXFB", &bUseRealXFB, 0);
settings->Get("SafeTextureCacheColorSamples", &iSafeTextureCache_ColorSamples,128);
settings->Get("ShowFPS", &bShowFPS, false);
- settings->Get("LogFPSToFile", &bLogFPSToFile, false);
+ settings->Get("LogRenderTimeToFile", &bLogRenderTimeToFile, false);
settings->Get("ShowInputDisplay", &bShowInputDisplay, false);
settings->Get("OverlayStats", &bOverlayStats, false);
settings->Get("OverlayProjStats", &bOverlayProjStats, false);
@@ -229,7 +229,7 @@ void VideoConfig::Save(const std::string& ini_file)
settings->Set("UseRealXFB", bUseRealXFB);
settings->Set("SafeTextureCacheColorSamples", iSafeTextureCache_ColorSamples);
settings->Set("ShowFPS", bShowFPS);
- settings->Set("LogFPSToFile", bLogFPSToFile);
+ settings->Set("LogRenderTimeToFile", bLogRenderTimeToFile);
settings->Set("ShowInputDisplay", bShowInputDisplay);
settings->Set("OverlayStats", bOverlayStats);
settings->Set("OverlayProjStats", bOverlayProjStats);