diff options
| author | Mikaël Capelle <capelle.mikael@gmail.com> | 2020-05-25 17:58:58 +0200 |
|---|---|---|
| committer | Mikaël Capelle <capelle.mikael@gmail.com> | 2020-05-25 17:58:58 +0200 |
| commit | c5bbf7360c4fc60e691f5e42606e4510172698f2 (patch) | |
| tree | dd5bcb3ecb9e916e8e97d9e30ccbe359839d84a3 | |
| parent | 03fc2b0dc25ae00322c6681d99f48857ecf77935 (diff) | |
Fix suffix comparison for SKSE DLLs.
| -rw-r--r-- | src/modinforegular.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modinforegular.cpp b/src/modinforegular.cpp index d8e42383..8d5d702d 100644 --- a/src/modinforegular.cpp +++ b/src/modinforegular.cpp @@ -698,7 +698,7 @@ std::vector<ModInfo::EContent> ModInfoRegular::doGetContents() const if (e) { contents.push_back(CONTENT_SKSEFILES); for (auto f : *e) { - if (f->suffix().compare("dll") == 0) { + if (f->suffix().compare("dll", FileNameComparator::CaseSensitivity) == 0) { contents.push_back(CONTENT_SKSE); break; } |
