summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikaël Capelle <capelle.mikael@gmail.com>2020-05-24 15:21:08 +0200
committerMikaël Capelle <capelle.mikael@gmail.com>2020-05-24 15:21:08 +0200
commita62bf7aa1289b21e0e9df75c860b2fd97fb915e4 (patch)
tree53458bd71a7c5f38a6033895e4eb42e266ee5ed7
parent4bcb92fc47181c62af62a55377b62dcfa02252ae (diff)
Fix typo in getContents().
-rw-r--r--src/modinforegular.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modinforegular.cpp b/src/modinforegular.cpp
index 3c1d49ea..87f6ce77 100644
--- a/src/modinforegular.cpp
+++ b/src/modinforegular.cpp
@@ -699,7 +699,7 @@ std::vector<ModInfo::EContent> ModInfoRegular::getContents() const
if (e) {
contents.push_back(CONTENT_SKSEFILES);
for (auto f : *e) {
- if (e->suffix().compare("dll") == 0) {
+ if (f->suffix().compare("dll") == 0) {
contents.push_back(CONTENT_SKSE);
break;
}