From 6d96fa25637349081cb8f306e274504acdbbade3 Mon Sep 17 00:00:00 2001 From: "Matias N. Goldberg" Date: Sun, 6 Mar 2022 19:52:26 -0300 Subject: [PATCH] Fix codecheck Signed-off-by: Matias N. Goldberg --- ogre2/src/Ogre2Material.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ogre2/src/Ogre2Material.cc b/ogre2/src/Ogre2Material.cc index 23f3f13f3..3e0fd5dc1 100644 --- a/ogre2/src/Ogre2Material.cc +++ b/ogre2/src/Ogre2Material.cc @@ -855,7 +855,8 @@ Ogre::MaterialPtr Ogre2Material::Material() this->dataPtr->ogreSolidColorShader->setSourceFile("plain_color_fs.hlsl"); break; case GraphicsAPI::METAL: - this->dataPtr->ogreSolidColorShader->setSourceFile("plain_color_fs.metal"); + this->dataPtr->ogreSolidColorShader->setSourceFile( + "plain_color_fs.metal"); break; default: IGN_ASSERT(false, "Impossible path!");