Skip to content

Commit

Permalink
Add missing returns.
Browse files Browse the repository at this point in the history
See #475.
  • Loading branch information
garfieldnate committed Jun 26, 2024
1 parent e2f57b7 commit f37b93d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Core/CLI/src/cli_svs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ bool CommandLineInterface::DoSVS(const std::vector<std::string>& args)
}
m_Result << "Spatial Visual System enabled in substates. ";
}
return true;
}
else if(args[1] == "--disable-in-substates")
{
Expand All @@ -103,6 +104,7 @@ bool CommandLineInterface::DoSVS(const std::vector<std::string>& args)
thisAgent->svs->set_enabled_in_substates(false);
m_Result << "Spatial Visual System disabled in substates. ";
}
return true;
}
}
if (thisAgent->svs->is_enabled())
Expand Down

0 comments on commit f37b93d

Please sign in to comment.