Shadergen: Remove trailing newlines

This commit is contained in:
wheremyfoodat 2024-07-17 21:54:56 +03:00
parent d013582223
commit 0fc95ae8ef

View file

@ -173,9 +173,7 @@ std::string FragmentGenerator::generate(const PICARegs& regs) {
applyAlphaTest(ret, regs);
ret += "fragColor = combinerOutput;\n";
ret += "}"; // End of main function
ret += "\n\n\n";
ret += "fragColor = combinerOutput;\n}"; // End of main function
return ret;
}