From 96d86d8a689e96ddc86daa9bc0fd6a9f1e721bf8 Mon Sep 17 00:00:00 2001 From: Fire Cube Date: Sat, 22 Feb 2025 20:57:06 +0100 Subject: [PATCH] fix --- src/qt_gui/settings_dialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt_gui/settings_dialog.cpp b/src/qt_gui/settings_dialog.cpp index aac18270f..ab9d685cd 100644 --- a/src/qt_gui/settings_dialog.cpp +++ b/src/qt_gui/settings_dialog.cpp @@ -628,7 +628,7 @@ void SettingsDialog::updateNoteTextEdit(const QString& elementName) { text = tr("Copy GPU Buffers:\\nGets around race conditions involving GPU submits.\\nMay or may not help with PM4 type 0 crashes."); } else if (elementName == "collectShaderCheckBox") { text = tr("Collect Shaders:\\nYou need this enabled to edit shaders with the debug menu (Ctrl + F10)."); - } else if (elementName == "splitLogCheckbox") { + } else if (elementName == "seperateLogFilesCheckbox") { text = tr("Split Log File:\\nSplits the log file into multiple files, one for each game.");} // clang-format on ui->descriptionText->setText(text.replace("\\n", "\n"));