diff options
Diffstat (limited to '')
| -rw-r--r-- | src/yuzu/game_list.h | 3 | ||||
| -rw-r--r-- | src/yuzu/main.cpp | 2 | ||||
| -rw-r--r-- | src/yuzu/main.h | 3 |
3 files changed, 5 insertions, 3 deletions
diff --git a/src/yuzu/game_list.h b/src/yuzu/game_list.h index e01b44c20..2713e7b54 100644 --- a/src/yuzu/game_list.h +++ b/src/yuzu/game_list.h | |||
| @@ -89,7 +89,8 @@ signals: | |||
| 89 | void GameChosen(QString game_path); | 89 | void GameChosen(QString game_path); |
| 90 | void ShouldCancelWorker(); | 90 | void ShouldCancelWorker(); |
| 91 | void OpenFolderRequested(u64 program_id, GameListOpenTarget target); | 91 | void OpenFolderRequested(u64 program_id, GameListOpenTarget target); |
| 92 | void NavigateToGamedbEntryRequested(u64 program_id, CompatibilityList& compatibility_list); | 92 | void NavigateToGamedbEntryRequested(u64 program_id, |
| 93 | const CompatibilityList& compatibility_list); | ||
| 93 | 94 | ||
| 94 | private slots: | 95 | private slots: |
| 95 | void onTextChanged(const QString& newText); | 96 | void onTextChanged(const QString& newText); |
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 366169eef..e36914f14 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp | |||
| @@ -727,7 +727,7 @@ void GMainWindow::OnGameListOpenFolder(u64 program_id, GameListOpenTarget target | |||
| 727 | } | 727 | } |
| 728 | 728 | ||
| 729 | void GMainWindow::OnGameListNavigateToGamedbEntry(u64 program_id, | 729 | void GMainWindow::OnGameListNavigateToGamedbEntry(u64 program_id, |
| 730 | CompatibilityList& compatibility_list) { | 730 | const CompatibilityList& compatibility_list) { |
| 731 | const auto it = FindMatchingCompatibilityEntry(compatibility_list, program_id); | 731 | const auto it = FindMatchingCompatibilityEntry(compatibility_list, program_id); |
| 732 | 732 | ||
| 733 | QString directory; | 733 | QString directory; |
diff --git a/src/yuzu/main.h b/src/yuzu/main.h index 64516a332..552e3e61c 100644 --- a/src/yuzu/main.h +++ b/src/yuzu/main.h | |||
| @@ -138,7 +138,8 @@ private slots: | |||
| 138 | /// Called whenever a user selects a game in the game list widget. | 138 | /// Called whenever a user selects a game in the game list widget. |
| 139 | void OnGameListLoadFile(QString game_path); | 139 | void OnGameListLoadFile(QString game_path); |
| 140 | void OnGameListOpenFolder(u64 program_id, GameListOpenTarget target); | 140 | void OnGameListOpenFolder(u64 program_id, GameListOpenTarget target); |
| 141 | void OnGameListNavigateToGamedbEntry(u64 program_id, CompatibilityList& compatibility_list); | 141 | void OnGameListNavigateToGamedbEntry(u64 program_id, |
| 142 | const CompatibilityList& compatibility_list); | ||
| 142 | void OnMenuLoadFile(); | 143 | void OnMenuLoadFile(); |
| 143 | void OnMenuLoadFolder(); | 144 | void OnMenuLoadFolder(); |
| 144 | void OnMenuInstallToNAND(); | 145 | void OnMenuInstallToNAND(); |