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

Commit 2767657

Browse files
authored
Merge pull request #253 from igniuss/patch-1
RemoveSettings(Type type) fix
2 parents ac8dfc8 + 73a45c2 commit 2767657

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PostProcessing/Runtime/PostProcessProfile.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public void RemoveSettings(Type type)
5959

6060
for (int i = 0; i < settings.Count; i++)
6161
{
62-
if (settings.GetType() == type)
62+
if (settings[i].GetType() == type)
6363
{
6464
toRemove = i;
6565
break;

0 commit comments

Comments
 (0)