diff options
author | bunnei <bunneidev@gmail.com> | 2018-09-09 22:32:53 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-09 22:32:53 -0400 |
commit | 7ddd5b765d0410cbeea1ca11f36852010a98b8b1 (patch) | |
tree | 9190633802a21094ca7780ae8c0d0f0cd46a4095 /src/yuzu/main.h | |
parent | 50c191439d94764bcecb1efed98b4b59d032bfb4 (diff) | |
parent | 73a2d71f449020dbf4e0cc165de8b1b157bc927c (diff) |
Merge pull request #1282 from lioncash/compat
yuzu: Move compatibility list specifics to their own source files
Diffstat (limited to 'src/yuzu/main.h')
-rw-r--r-- | src/yuzu/main.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/yuzu/main.h b/src/yuzu/main.h index 089ea2445..552e3e61c 100644 --- a/src/yuzu/main.h +++ b/src/yuzu/main.h @@ -13,6 +13,7 @@ #include "common/common_types.h" #include "core/core.h" #include "ui_main.h" +#include "yuzu/compatibility_list.h" #include "yuzu/hotkeys.h" class Config; @@ -137,9 +138,8 @@ private slots: /// Called whenever a user selects a game in the game list widget. void OnGameListLoadFile(QString game_path); void OnGameListOpenFolder(u64 program_id, GameListOpenTarget target); - void OnGameListNavigateToGamedbEntry( - u64 program_id, - std::unordered_map<std::string, std::pair<QString, QString>>& compatibility_list); + void OnGameListNavigateToGamedbEntry(u64 program_id, + const CompatibilityList& compatibility_list); void OnMenuLoadFile(); void OnMenuLoadFolder(); void OnMenuInstallToNAND(); |