mirror of
https://github.com/geode-sdk/geode.git
synced 2025-04-04 09:11:31 -04:00
I AM CRYING OH MY GOD
This commit is contained in:
parent
94d03ed630
commit
6a48715c8a
1 changed files with 10 additions and 8 deletions
|
@ -618,14 +618,16 @@ void Loader::Impl::continueRefreshModGraph() {
|
|||
|
||||
switch (m_loadingState) {
|
||||
case LoadingState::Mods:
|
||||
log::debug("Loading mods");
|
||||
log::pushNest();
|
||||
this->loadModGraph(m_modsToLoad.front(), false);
|
||||
log::popNest();
|
||||
m_modsToLoad.pop_front();
|
||||
if (m_modsToLoad.empty())
|
||||
m_loadingState = LoadingState::Problems;
|
||||
break;
|
||||
if (!m_modsToLoad.empty()) {
|
||||
log::debug("Loading mods");
|
||||
log::pushNest();
|
||||
this->loadModGraph(m_modsToLoad.front(), false);
|
||||
log::popNest();
|
||||
m_modsToLoad.pop_front();
|
||||
break;
|
||||
}
|
||||
m_loadingState = LoadingState::Problems;
|
||||
[[fallthrough]];
|
||||
case LoadingState::Problems:
|
||||
log::debug("Finding problems");
|
||||
log::pushNest();
|
||||
|
|
Loading…
Add table
Reference in a new issue