From 7bb01d52d82d8d408f903998f42eef234489eafe Mon Sep 17 00:00:00 2001 From: gxalpha Date: Thu, 13 Oct 2022 02:01:46 +0200 Subject: [PATCH] UI: Use correct title for failed replay buffer start --- UI/window-basic-main-outputs.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/UI/window-basic-main-outputs.cpp b/UI/window-basic-main-outputs.cpp index 09bc55eb5..2eb4aee07 100644 --- a/UI/window-basic-main-outputs.cpp +++ b/UI/window-basic-main-outputs.cpp @@ -2043,8 +2043,7 @@ bool AdvancedOutput::StartReplayBuffer() error_reason = QT_UTF8(error); else error_reason = QTStr("Output.StartFailedGeneric"); - QMessageBox::critical(main, - QTStr("Output.StartRecordingFailed"), + QMessageBox::critical(main, QTStr("Output.StartReplayFailed"), error_reason); return false; }