1
0
mirror of https://github.com/citra-emu/citra.git synced 2025-04-08 06:50:10 +00:00

swrasterizer/lighting: remove newline in logging macro

Software rasterizer version of 
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

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