Skip to content

Commit

Permalink
copy paste
Browse files Browse the repository at this point in the history
  • Loading branch information
jpenilla committed Aug 9, 2024
1 parent 4d34efd commit 1c01331
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ private void dumpIfOverThreshold(LargeTick largeTick) {
}
}
if (this.userTickThreshold >= 0) {
if (largeTick.profile.timers()[this.clientTick] / 1_000_000.0 >= this.userRenderThreshold) {
if (largeTick.profile.timers()[this.clientTick] / 1_000_000.0 >= this.userTickThreshold) {
dump = true;
}
}
Expand Down

0 comments on commit 1c01331

Please sign in to comment.