diff options
| author | 2020-07-12 12:25:10 -0400 | |
|---|---|---|
| committer | 2020-07-12 12:25:10 -0400 | |
| commit | ed89bcc767a6c187d834b6b9bb6134190598fc53 (patch) | |
| tree | b17d4aaf8b4550d6433ff28a820046957b7a4172 /src | |
| parent | Merge pull request #3385 from Morph1984/batch-install (diff) | |
| parent | CMakeLists: Make use of /std:c++latest on MSVC (diff) | |
| download | yuzu-ed89bcc767a6c187d834b6b9bb6134190598fc53.tar.gz yuzu-ed89bcc767a6c187d834b6b9bb6134190598fc53.tar.xz yuzu-ed89bcc767a6c187d834b6b9bb6134190598fc53.zip | |
Merge pull request #4290 from lioncash/latest
CMakeLists: Make use of /std:c++latest on MSVC
Diffstat (limited to 'src')
| -rw-r--r-- | src/yuzu/game_list.cpp | 4 |
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) { | |||
| 531 | UISettings::GameDir& game_dir = | 531 | UISettings::GameDir& game_dir = |
| 532 | *selected.data(GameListDir::GameDirRole).value<UISettings::GameDir*>(); | 532 | *selected.data(GameListDir::GameDirRole).value<UISettings::GameDir*>(); |
| 533 | 533 | ||
| 534 | QAction* move_up = context_menu.addAction(tr(u8"\U000025b2 Move Up")); | 534 | QAction* move_up = context_menu.addAction(tr("\u25B2 Move Up")); |
| 535 | QAction* move_down = context_menu.addAction(tr(u8"\U000025bc Move Down ")); | 535 | QAction* move_down = context_menu.addAction(tr("\u25bc Move Down")); |
| 536 | QAction* open_directory_location = context_menu.addAction(tr("Open Directory Location")); | 536 | QAction* open_directory_location = context_menu.addAction(tr("Open Directory Location")); |
| 537 | 537 | ||
| 538 | const int row = selected.row(); | 538 | const int row = selected.row(); |