From e84e2ac6271383cb279a4e97c0e204441116a405 Mon Sep 17 00:00:00 2001 From: Vicki Pfau Date: Thu, 16 Mar 2017 10:31:41 -0700 Subject: [PATCH] Qt: Fix copy-paste error --- src/platform/qt/Window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platform/qt/Window.cpp b/src/platform/qt/Window.cpp index d6ad1d945..a0630f79e 100644 --- a/src/platform/qt/Window.cpp +++ b/src/platform/qt/Window.cpp @@ -352,7 +352,7 @@ QString Window::getFilters() const { "*.rom", "*.bin"}; formats.append(dsFormats); - filters.append(tr("DS ROMs (%1)").arg(gbaFormats.join(QChar(' ')))); + filters.append(tr("DS ROMs (%1)").arg(dsFormats.join(QChar(' ')))); #endif #ifdef M_CORE_GB