Skip to content

Commit

Permalink
Edited prints
Browse files Browse the repository at this point in the history
  • Loading branch information
techiew committed Sep 7, 2022
1 parent 5b991db commit 04b75ed
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions EldenRingModLoader/ModLoader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ std::vector<std::pair<int64_t, std::string>> ModLoader::FindModsAndReadLoadOrder
std::vector<std::pair<int64_t, std::string>> dllMods;
constexpr int automaticLoadOrder = -1;
fs::create_directories(m_modFolder);
m_logger.Log("Load Order:");
m_logger.Log("Load orders:");

for (auto file : fs::recursive_directory_iterator(m_modFolder))
{
Expand Down Expand Up @@ -69,8 +69,7 @@ std::vector<std::pair<int64_t, std::string>> ModLoader::FindModsAndReadLoadOrder
loadOrder = std::stoi(overrideLoadOrder);
}

m_logger.Log(" %s = %d", modName.c_str(), loadOrder);

m_logger.Log("%s = %i", modName.c_str(), loadOrder);
dllMods.push_back(std::make_pair(loadOrder, modName + ".dll"));
}
}
Expand Down

0 comments on commit 04b75ed

Please sign in to comment.