Merge pull request #4040 from valentinvanelslande/lighting

swrasterizer/lighting: remove newline in logging macro
This commit is contained in:
Weiyi Wang 2018-08-02 11:18:03 +03:00 committed by GitHub
commit 5bf87e986e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ std::tuple<Math::Vec4<u8>, Math::Vec4<u8>> ComputeFragmentsColors(
}
break;
default:
LOG_CRITICAL(HW_GPU, "Unknown lighting LUT input {}\n", static_cast<u32>(input));
LOG_CRITICAL(HW_GPU, "Unknown lighting LUT input {}", static_cast<u32>(input));
UNIMPLEMENTED();
result = 0.0f;
}