From 5fcb5097021c4dfafb142f2c150544e7ba36e7e7 Mon Sep 17 00:00:00 2001 From: Ryan Meredith Date: Wed, 6 Jun 2018 11:59:29 -0400 Subject: [PATCH] Give "Dump TEV Stages" and "Dump Texture Fetches" descriptions --- .../Config/Graphics/SoftwareRendererWidget.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Source/Core/DolphinQt2/Config/Graphics/SoftwareRendererWidget.cpp b/Source/Core/DolphinQt2/Config/Graphics/SoftwareRendererWidget.cpp index 1a1fb2b1a7..018fd1a014 100644 --- a/Source/Core/DolphinQt2/Config/Graphics/SoftwareRendererWidget.cpp +++ b/Source/Core/DolphinQt2/Config/Graphics/SoftwareRendererWidget.cpp @@ -165,8 +165,18 @@ void SoftwareRendererWidget::AddDescriptions() QT_TR_NOOP("Dump objects to User/Dump/Objects/.\n\nIf unsure, leave " "this unchecked."); + static const char TR_DUMP_TEV_STAGES_DESCRIPTION[] = + QT_TR_NOOP("Dump TEV Stages to User/Dump/Objects/.\n\nIf unsure, leave " + "this unchecked."); + + static const char TR_DUMP_TEV_FETCHES_DESCRIPTION[] = + QT_TR_NOOP("Dump Texture Fetches to User/Dump/Objects/.\n\nIf unsure, leave " + "this unchecked."); + AddDescription(m_backend_combo, TR_BACKEND_DESCRIPTION); AddDescription(m_show_statistics, TR_SHOW_STATISTICS_DESCRIPTION); AddDescription(m_dump_textures, TR_DUMP_TEXTURES_DESCRIPTION); AddDescription(m_dump_objects, TR_DUMP_OBJECTS_DESCRIPTION); + AddDescription(m_dump_tev_stages, TR_DUMP_TEV_STAGES_DESCRIPTION); + AddDescription(m_dump_tev_fetches, TR_DUMP_TEV_FETCHES_DESCRIPTION); }