summaryrefslogtreecommitdiff
path: root/client/profile.lua
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2023-01-29 02:59:50 +0000
committerubq323 <ubq323@ubq323.website>2023-01-29 02:59:50 +0000
commitebe12a65c07bccfbc704667c88d8125be33067cf (patch)
tree9c1ef457ce0da96b4d5dbe77cd56625f53b4ba89 /client/profile.lua
parent9b659149c7273a57a82c9be988a8a78c62bb23f4 (diff)
camera stuff + vastly optimise hex drawing
Diffstat (limited to 'client/profile.lua')
-rw-r--r--client/profile.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/profile.lua b/client/profile.lua
index e7eab02..47a9806 100644
--- a/client/profile.lua
+++ b/client/profile.lua
@@ -1,7 +1,7 @@
local profile = require"jit.profile"
local function start(period,file)
local function cb(thread,samples,vmstate)
- file:write(profile.dumpstack(thread,"pF l;",-100), vmstate, " ", samples, "\n")
+ file:write(profile.dumpstack(thread,"pF;l;",-100), vmstate, " ", samples, "\n")
end
profile.start("vli"..tonumber(period), cb)
end