Skip to content
Permalink
Browse files
Merge pull request #7787 from spycrab/issue_11551
Qt/GameConfigEdit: Fix some settings being in the wrong section
  • Loading branch information
lioncash committed Feb 6, 2019
2 parents 9729462 + fa01db4 commit 9e2406e
Showing 1 changed file with 2 additions and 2 deletions.
@@ -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"));

0 comments on commit 9e2406e

Please sign in to comment.