From b2ad88dac1c30f6ff9d25d5747436134f006196c Mon Sep 17 00:00:00 2001 From: Valentin Vanelslande Date: Mon, 30 Jul 2018 16:09:16 -0500 Subject: [PATCH] swrasterizer/lighting: remove newline in logging macro Software rasterizer version of #3904 --- src/video_core/swrasterizer/lighting.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video_core/swrasterizer/lighting.cpp b/src/video_core/swrasterizer/lighting.cpp index 16491d6ef..003c3148c 100644 --- a/src/video_core/swrasterizer/lighting.cpp +++ b/src/video_core/swrasterizer/lighting.cpp @@ -143,7 +143,7 @@ std::tuple, Math::Vec4> ComputeFragmentsColors( } break; default: - LOG_CRITICAL(HW_GPU, "Unknown lighting LUT input {}\n", static_cast(input)); + LOG_CRITICAL(HW_GPU, "Unknown lighting LUT input {}", static_cast(input)); UNIMPLEMENTED(); result = 0.0f; }