summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-07-11 01:24:23 +0200
committerLioncash <mathew1800@gmail.com>2020-07-11 10:45:40 +0200
commitfb0fefc75c3cb9e060d59f3b10fe3ae66626aeb8 (patch)
tree6d3718ccfacf535d2738f7a824b0abec2c945115 /src
parentMerge pull request #4221 from jbeich/unused-qt-opengl (diff)
downloadyuzu-fb0fefc75c3cb9e060d59f3b10fe3ae66626aeb8.tar
yuzu-fb0fefc75c3cb9e060d59f3b10fe3ae66626aeb8.tar.gz
yuzu-fb0fefc75c3cb9e060d59f3b10fe3ae66626aeb8.tar.bz2
yuzu-fb0fefc75c3cb9e060d59f3b10fe3ae66626aeb8.tar.lz
yuzu-fb0fefc75c3cb9e060d59f3b10fe3ae66626aeb8.tar.xz
yuzu-fb0fefc75c3cb9e060d59f3b10fe3ae66626aeb8.tar.zst
yuzu-fb0fefc75c3cb9e060d59f3b10fe3ae66626aeb8.zip
Diffstat (limited to 'src')
-rw-r--r--src/yuzu/game_list.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu/game_list.cpp b/src/yuzu/game_list.cpp
index bfb600df0..ab7fc7a24 100644
--- a/src/yuzu/game_list.cpp
+++ b/src/yuzu/game_list.cpp
@@ -531,8 +531,8 @@ void GameList::AddPermDirPopup(QMenu& context_menu, QModelIndex selected) {
UISettings::GameDir& game_dir =
*selected.data(GameListDir::GameDirRole).value<UISettings::GameDir*>();
- QAction* move_up = context_menu.addAction(tr(u8"\U000025b2 Move Up"));
- QAction* move_down = context_menu.addAction(tr(u8"\U000025bc Move Down "));
+ QAction* move_up = context_menu.addAction(tr("\u25B2 Move Up"));
+ QAction* move_down = context_menu.addAction(tr("\u25bc Move Down"));
QAction* open_directory_location = context_menu.addAction(tr("Open Directory Location"));
const int row = selected.row();