Skip to content
This repository has been archived by the owner on Apr 10, 2024. It is now read-only.

Commit

Permalink
resolve #74
Browse files Browse the repository at this point in the history
  • Loading branch information
OpOpYaDev committed Mar 18, 2024
1 parent 5195bdb commit 0eff4f7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ public static bool UnsubscribeRecursive(this ref PlayerLoopSystem self, PlayerLo
result = true;
}
#else
loopSystem.updateDelegate -= updateFunction;
self.updateDelegate -= updateFunction;
result = true;
#endif

Expand Down Expand Up @@ -235,7 +235,7 @@ public static bool UnsubscribeRecursive(this ref PlayerLoopSystem self, Type loo
result = true;
}
#else
loopSystem.updateDelegate -= updateFunction;
self.updateDelegate -= updateFunction;
result = true;
#endif
}
Expand Down

0 comments on commit 0eff4f7

Please sign in to comment.