Skip to content

Commit 85c1b98

Browse files
committed
Fix missing EOF new lines
Signed-off-by: Isaac Marovitz <isaacryu@icloud.com>
1 parent dfbd7eb commit 85c1b98

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

MarathonRecomp/gpu/shader/msl/enhanced_burnout_blur_ps.metal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ float4 shaderMain(Interpolators input [[stage_in]],
4343
}
4444

4545
return result * (1.0 / (float)g_SampleCount);
46-
}
46+
}

MarathonRecomp/gpu/shader/msl/enhanced_burnout_blur_vs.metal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ Interpolators shaderMain(VertexShaderInput input [[stage_in]],
3838
output.oVelScale.y = -scaledVec.y * 0.00001;
3939

4040
return output;
41-
}
41+
}

0 commit comments

Comments
 (0)