Skip to content

Commit 5d81bd9

Browse files
committed
Timer: Fix missing variable in SimpleTimer.
Signed-off-by: Raven <raven@az-raven.com>
1 parent 7e34b4a commit 5d81bd9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

SimpleTimer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public void Start()
4242
private void Execute(UnityEvent<float> action, float value) {
4343
try {
4444
action?.Invoke(value);
45-
} catch {
45+
} catch (Exception ex) {
4646
Debug.LogException(ex);
4747
}
4848
}

0 commit comments

Comments
 (0)