aboutsummaryrefslogtreecommitdiff
path: root/src/yuzu/game_list_worker.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-09-09 19:09:37 -0400
committerLioncash <mathew1800@gmail.com>2018-09-09 19:45:25 -0400
commitbd8065295c4c000c341c7638d809979da26859c1 (patch)
treef186a863ebd59be02e99902b9b8a9d3c086a0043 /src/yuzu/game_list_worker.h
parent6d64ecf359a1194e29ea73f4ae837182bccc74b3 (diff)
yuzu: Move compatibility list specifics to their own source files
Lets us keep the generic portions of the compatibility list code together, and allows us to introduce a type alias that makes it so we don't need to type out a very long type declaration anymore, making the immediate readability of some code better.
Diffstat (limited to 'src/yuzu/game_list_worker.h')
-rw-r--r--src/yuzu/game_list_worker.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/yuzu/game_list_worker.h b/src/yuzu/game_list_worker.h
index 42c93fc31..09d20c42f 100644
--- a/src/yuzu/game_list_worker.h
+++ b/src/yuzu/game_list_worker.h
@@ -16,6 +16,7 @@
#include <QString>
#include "common/common_types.h"
+#include "yuzu/compatibility_list.h"
class QStandardItem;
@@ -32,9 +33,8 @@ class GameListWorker : public QObject, public QRunnable {
Q_OBJECT
public:
- GameListWorker(
- std::shared_ptr<FileSys::VfsFilesystem> vfs, QString dir_path, bool deep_scan,
- const std::unordered_map<std::string, std::pair<QString, QString>>& compatibility_list);
+ GameListWorker(std::shared_ptr<FileSys::VfsFilesystem> vfs, QString dir_path, bool deep_scan,
+ const CompatibilityList& compatibility_list);
~GameListWorker() override;
/// Starts the processing of directory tree information.
@@ -67,6 +67,6 @@ private:
QStringList watch_list;
QString dir_path;
bool deep_scan;
- const std::unordered_map<std::string, std::pair<QString, QString>>& compatibility_list;
+ const CompatibilityList& compatibility_list;
std::atomic_bool stop_processing;
};