From 4259105d68eb8bc8c35ae89762a2a1aa2441a2e2 Mon Sep 17 00:00:00 2001 From: Alaska Date: Mon, 24 Apr 2023 08:49:14 +0200 Subject: [PATCH] Clean up: Fix spacing on Cycles debug message "Use MNEE" This changes the Cycles Debug message for "Use MNEE" from: "Use MNEEFalse" to "Use MNEE False" Pull Request: https://projects.blender.org/blender/blender/pulls/107269 --- intern/cycles/scene/scene.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intern/cycles/scene/scene.cpp b/intern/cycles/scene/scene.cpp index 2b68d1bd9a6..d3d5fe7b0d7 100644 --- a/intern/cycles/scene/scene.cpp +++ b/intern/cycles/scene/scene.cpp @@ -550,7 +550,7 @@ static void log_kernel_features(const uint features) << "\n"; VLOG_INFO << "Use Shader Raytrace " << string_from_bool(features & KERNEL_FEATURE_NODE_RAYTRACE) << "\n"; - VLOG_INFO << "Use MNEE" << string_from_bool(features & KERNEL_FEATURE_MNEE) << "\n"; + VLOG_INFO << "Use MNEE " << string_from_bool(features & KERNEL_FEATURE_MNEE) << "\n"; VLOG_INFO << "Use Transparent " << string_from_bool(features & KERNEL_FEATURE_TRANSPARENT) << "\n"; VLOG_INFO << "Use Denoising " << string_from_bool(features & KERNEL_FEATURE_DENOISING) << "\n";