From 3e046c2b325bb9250e1393372860914841c76463 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sun, 19 May 2024 21:52:49 +0200 Subject: [PATCH] DolphinQt: Fix double argument in Infinity error message This was a mistake I made in 83b280d903. --- Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp b/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp index e4c428684f..bba4b7d4f8 100644 --- a/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp +++ b/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp @@ -175,7 +175,7 @@ void InfinityBaseWindow::LoadFigurePath(u8 slot, const QString& path) { QMessageBox::warning( this, tr("Failed to read the Infinity file!"), - tr("Failed to read the Infinity file(%1):\n%1\n\nThe file was too small.").arg(path), + tr("Failed to read the Infinity file:\n%1\n\nThe file was too small.").arg(path), QMessageBox::Ok); return; }