Skip to content

Commit

Permalink
increase space for timers
Browse files Browse the repository at this point in the history
  • Loading branch information
myk002 committed Feb 14, 2024
1 parent 739228f commit 591ef16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/lua/overlay.lua
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ function print_timers()
))
end
print()
print(('elapsed time: %8d ms (%dm %ds)'):format(
print(('elapsed time: %10d ms (%dm %ds)'):format(
elapsed, elapsed // 60000, (elapsed % 60000) // 1000
))
print(('widget time: %8d ms (%.2f%% of elapsed time)'):format(
print(('widget time: %10d ms (%.2f%% of elapsed time)'):format(
sum, (sum * 100) / elapsed
))
end
Expand Down

0 comments on commit 591ef16

Please sign in to comment.