Remove unnecessary error check in compile_file

This commit is contained in:
2025-08-24 11:22:13 +02:00
parent 5b2e2e936b
commit 4f37ed03c0

View File

@@ -503,11 +503,6 @@ compile_file :: (compiler : *Shader_Compiler, paths : ..string) -> Compile_Resul
parse(*result);
check(*result);
codegen(*result);
if result.had_error {
return result;
}
generate_output_data(*result);
return result;