diff options
| author | Pierre Bourdon <delroth@gmail.com> | 2015-02-24 23:31:05 +0100 |
|---|---|---|
| committer | Pierre Bourdon <delroth@gmail.com> | 2015-02-24 23:31:05 +0100 |
| commit | f06b1106dbbaba5b8a9b09e7762029f3918260cd (patch) | |
| tree | d943740bc48f5584768ddd149d2a0928df2d9ffe /Source/Core/VideoCommon/VideoConfig.cpp | |
| parent | 5fc62ac56316ad613b9ef8509d8e8e4f877a0731 (diff) | |
| parent | 967eaad8df52197dad69891c25cbc69f8e52e6b8 (diff) | |
Merge pull request #2089 from degasus/remove_disable_efb_copy
Remove disable efb copy
Diffstat (limited to 'Source/Core/VideoCommon/VideoConfig.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VideoConfig.cpp | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/Source/Core/VideoCommon/VideoConfig.cpp b/Source/Core/VideoCommon/VideoConfig.cpp index ef5fe26798..4d56582364 100644 --- a/Source/Core/VideoCommon/VideoConfig.cpp +++ b/Source/Core/VideoCommon/VideoConfig.cpp @@ -97,8 +97,7 @@ void VideoConfig::Load(const std::string& ini_file) IniFile::Section* hacks = iniFile.GetOrCreateSection("Hacks"); hacks->Get("EFBAccessEnable", &bEFBAccessEnable, true); - hacks->Get("EFBCopyEnable", &bEFBCopyEnable, true); - hacks->Get("EFBToTextureEnable", &bCopyEFBToTexture, true); + hacks->Get("EFBToTextureEnable", &bSkipEFBCopyToRam, true); hacks->Get("EFBScaledCopy", &bCopyEFBScaled, true); hacks->Get("EFBEmulateFormatChanges", &bEFBEmulateFormatChanges, false); @@ -197,8 +196,7 @@ void VideoConfig::GameIniLoad() CHECK_SETTING("Video_Stereoscopy", "StereoConvergenceMinimum", iStereoConvergenceMinimum); CHECK_SETTING("Video_Hacks", "EFBAccessEnable", bEFBAccessEnable); - CHECK_SETTING("Video_Hacks", "EFBCopyEnable", bEFBCopyEnable); - CHECK_SETTING("Video_Hacks", "EFBToTextureEnable", bCopyEFBToTexture); + CHECK_SETTING("Video_Hacks", "EFBToTextureEnable", bSkipEFBCopyToRam); CHECK_SETTING("Video_Hacks", "EFBScaledCopy", bCopyEFBScaled); CHECK_SETTING("Video_Hacks", "EFBEmulateFormatChanges", bEFBEmulateFormatChanges); @@ -285,8 +283,7 @@ void VideoConfig::Save(const std::string& ini_file) IniFile::Section* hacks = iniFile.GetOrCreateSection("Hacks"); hacks->Set("EFBAccessEnable", bEFBAccessEnable); - hacks->Set("EFBCopyEnable", bEFBCopyEnable); - hacks->Set("EFBToTextureEnable", bCopyEFBToTexture); + hacks->Set("EFBToTextureEnable", bSkipEFBCopyToRam); hacks->Set("EFBScaledCopy", bCopyEFBScaled); hacks->Set("EFBEmulateFormatChanges", bEFBEmulateFormatChanges); |
