swrasterizer/lighting: remove newline in logging macro

Software rasterizer version of #3904
This commit is contained in:
Valentin Vanelslande 2018-07-30 16:09:16 -05:00 committed by GitHub
parent 05eb0ccb03
commit b2ad88dac1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;
}