summaryrefslogtreecommitdiff
path: root/src/modinfo.h
diff options
context:
space:
mode:
authorSilarn <jrim@rimpo.org>2018-05-02 12:38:23 -0500
committerSilarn <jrim@rimpo.org>2018-05-02 12:38:23 -0500
commit168da18aa51868ad3ac908affb55a8aabdba1aed (patch)
tree7ebd21b8936f27b620a6eab72a4eeb19789bed20 /src/modinfo.h
parentd62ec9c867b448276ab9873ddd3f320487ab5572 (diff)
Fix MO endorsement check and add game to ModInfo s_ModsByModID
Diffstat (limited to 'src/modinfo.h')
-rw-r--r--src/modinfo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modinfo.h b/src/modinfo.h
index 19be2ca2..7bb2bdad 100644
--- a/src/modinfo.h
+++ b/src/modinfo.h
@@ -148,7 +148,7 @@ public:
* @todo in its current form, this function is broken! There may be multiple mods with the same nexus id,
* this function will return only one of them
**/
- static std::vector<ModInfo::Ptr> getByModID(int modID);
+ static std::vector<ModInfo::Ptr> getByModID(QString game, int modID);
/**
* @brief remove a mod by index
@@ -638,7 +638,7 @@ protected:
private:
static QMutex s_Mutex;
- static std::map<int, std::vector<unsigned int> > s_ModsByModID;
+ static std::map<std::pair<QString, int>, std::vector<unsigned int> > s_ModsByModID;
static int s_NextID;
bool m_Valid;