From 2eb8244f23e6393f8c8fbb75284d2c99bef3bb76 Mon Sep 17 00:00:00 2001 From: Vicki Pfau Date: Sat, 25 Jan 2020 21:15:35 -0800 Subject: [PATCH] Qt: Fix strings for GameShark save menu options --- src/platform/qt/Window.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/platform/qt/Window.cpp b/src/platform/qt/Window.cpp index aa1d387d0..957c1dfdd 100644 --- a/src/platform/qt/Window.cpp +++ b/src/platform/qt/Window.cpp @@ -1181,10 +1181,10 @@ void Window::setupMenu(QMenuBar* menubar) { #ifdef M_CORE_GBA m_actions.addSeparator("file"); - Action* importShark = addGameAction(tr("Import GameShark Save"), "importShark", this, &Window::importSharkport, "file"); + Action* importShark = addGameAction(tr("Import GameShark Save..."), "importShark", this, &Window::importSharkport, "file"); m_platformActions.insert(PLATFORM_GBA, importShark); - Action* exportShark = addGameAction(tr("Export GameShark Save"), "exportShark", this, &Window::exportSharkport, "file"); + Action* exportShark = addGameAction(tr("Export GameShark Save..."), "exportShark", this, &Window::exportSharkport, "file"); m_platformActions.insert(PLATFORM_GBA, exportShark); #endif