Skip to content

Commit

Permalink
formatting again
Browse files Browse the repository at this point in the history
  • Loading branch information
ASpoonPlaysGames committed Dec 18, 2023
1 parent 06c8684 commit 22ac194
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion NorthstarDLL/plugins/plugins.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,11 @@ std::optional<Plugin> PluginManager::LoadPlugin(fs::path path, PluginInitFuncs*
[&](char c) -> bool { return !((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || (c >= '0' && c <= '9') || c == '_'); }) !=
plugin.dependencyName.end())
{
Warning(eLog::PLUGSYS, "Dependency string \"%s\" in %s is not valid a squirrel constant!\n", plugin.dependencyName.c_str(), plugin.name.c_str());
Warning(
eLog::PLUGSYS,
"Dependency string \"%s\" in %s is not valid a squirrel constant!\n",
plugin.dependencyName.c_str(),
plugin.name.c_str());
}

plugin.init_sqvm_client = (PLUGIN_INIT_SQVM_TYPE)GetProcAddress(pluginLib, "PLUGIN_INIT_SQVM_CLIENT");
Expand Down

0 comments on commit 22ac194

Please sign in to comment.