From cdf759736fc12e354e1b9f062299b112f8746b6a Mon Sep 17 00:00:00 2001 From: momo5502 Date: Mon, 24 Apr 2017 21:14:32 +0200 Subject: [PATCH] [IMaterial] Indentation --- src/Components/Modules/AssetInterfaces/IMaterial.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Components/Modules/AssetInterfaces/IMaterial.cpp b/src/Components/Modules/AssetInterfaces/IMaterial.cpp index befe80cb..ca062499 100644 --- a/src/Components/Modules/AssetInterfaces/IMaterial.cpp +++ b/src/Components/Modules/AssetInterfaces/IMaterial.cpp @@ -60,7 +60,7 @@ namespace Assets { // Workaround for effect techsets having _nofog suffix std::string suffix; - if(Utils::String::StartsWith(techset, "effect_") && Utils::String::EndsWith(techset, "_nofog")) + if (Utils::String::StartsWith(techset, "effect_") && Utils::String::EndsWith(techset, "_nofog")) { suffix = "_nofog"; Utils::String::Replace(techset, suffix, ""); @@ -166,7 +166,7 @@ namespace Assets } }, asset, false); - if(!replacementFound && asset->techniqueSet) + if (!replacementFound && asset->techniqueSet) { Components::Logger::Print("No replacement found for material %s with techset %s\n", asset->name, asset->techniqueSet->name); }