summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2024-05-19 21:52:49 +0200
committerJosJuice <josjuice@gmail.com>2024-05-19 21:52:49 +0200
commit3e046c2b325bb9250e1393372860914841c76463 (patch)
tree8cdd3214570aa056d6377ed83659c3065fa1ec7e /Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp
parent131ca83addd6620b49b8dcd6040e9d7bfa4f099c (diff)
DolphinQt: Fix double argument in Infinity error message
This was a mistake I made in 83b280d903.
Diffstat (limited to 'Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp')
-rw-r--r--Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp2
1 files changed, 1 insertions, 1 deletions
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;
}