Merge pull request #7787 from spycrab/issue_11551

Qt/GameConfigEdit: Fix some settings being in the wrong section
This commit is contained in:
Mat M 2019-02-06 07:29:04 -05:00 committed by GitHub
commit 9e2406e7be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -212,10 +212,10 @@ void GameConfigEdit::AddMenubarOptions()
auto* video_menubar = m_menu->addMenu(tr("Video"));
AddBoolOption(video_menubar, tr("Store EFB Copies to Texture Only"),
QStringLiteral("Video_Settings"), QStringLiteral("EFBToTextureEnable"));
QStringLiteral("Video_Hacks"), QStringLiteral("EFBToTextureEnable"));
AddBoolOption(video_menubar, tr("Store XFB Copies to Texture Only"),
QStringLiteral("Video_Settings"), QStringLiteral("XFBToTextureEnable"));
QStringLiteral("Video_Hacks"), QStringLiteral("XFBToTextureEnable"));
{
auto* texture_cache = video_menubar->addMenu(tr("Texture Cache"));