Skip to content

Commit

Permalink
style(pre-commit): autofix
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Oct 3, 2024
1 parent d8ba16f commit f19ca76
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,7 @@ std::unique_ptr<Ogre::ColourValue> gradation(
color_ptr->g =
static_cast<float>(color_max.greenF() * ratio + color_min.greenF() * (1.0 - ratio));
color_ptr->r = static_cast<float>(color_max.redF() * ratio + color_min.redF() * (1.0 - ratio));
color_ptr->b =
static_cast<float>(color_max.blueF() * ratio + color_min.blueF() * (1.0 - ratio));
color_ptr->b = static_cast<float>(color_max.blueF() * ratio + color_min.blueF() * (1.0 - ratio));

return color_ptr;
}
Expand Down

0 comments on commit f19ca76

Please sign in to comment.