Fix missing newline

Signed-off-by: Isaac Marovitz <isaacryu@icloud.com>
This commit is contained in:
Isaac Marovitz 2025-03-20 22:30:05 -04:00
parent f87e28fbcc
commit 995d2889d4
No known key found for this signature in database
GPG key ID: 97250B2B09A132E1

View file

@ -1434,7 +1434,7 @@ void ShaderRecompiler::recompile(const uint8_t* shaderData, const std::string_vi
if (pixelShader->outputs & PIXEL_SHADER_OUTPUT_DEPTH)
out += ",\n\tout float oDepth : SV_Depth";
out += "#endif\n";
out += "\n#endif\n";
}
else
{