Skip to content
This repository was archived by the owner on Nov 30, 2020. It is now read-only.

Commit 226ee18

Browse files
committed
Fixed dumb mistake
1 parent ff4b1df commit 226ee18

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

PostProcessing/Runtime/Utils/RuntimeUtilities.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public static Mesh fullscreenTriangle
7474
{
7575
if (s_FullscreenTriangle != null)
7676
return s_FullscreenTriangle;
77-
77+
7878
s_FullscreenTriangle = new Mesh { name = "Fullscreen Triangle" };
7979

8080
// Because we have to support older platforms (GLES2/3, DX9 etc) we can't do all of
@@ -116,7 +116,7 @@ public static PropertySheet copySheet
116116
{
117117
get
118118
{
119-
if (s_CopySheet != null)
119+
if (s_CopySheet == null)
120120
s_CopySheet = new PropertySheet(copyMaterial);
121121

122122
return s_CopySheet;

0 commit comments

Comments
 (0)