Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
uniboi committed Sep 12, 2024
1 parent 0f16451 commit 8e541d2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion primedev/plugins/plugins.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,10 @@ Plugin::Plugin(std::string path)
int64_t logColor = m_pluginId->GetField(PluginField::COLOR);
if (logColor != 0)
{
m_logColor = Color((int)(logColor & IPluginId::COLOR_R_MASK), (int)((logColor & IPluginId::COLOR_G_MASK) >> 8), (int)((logColor & IPluginId::COLOR_B_MASK) >> 16));
m_logColor = Color(
(int)(logColor & IPluginId::COLOR_R_MASK),
(int)((logColor & IPluginId::COLOR_G_MASK) >> 8),
(int)((logColor & IPluginId::COLOR_B_MASK) >> 16));
}

if (!name)
Expand Down

0 comments on commit 8e541d2

Please sign in to comment.