diff options
author | ubq323 <ubq323@ubq323.website> | 2023-01-29 02:59:50 +0000 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2023-01-29 02:59:50 +0000 |
commit | ebe12a65c07bccfbc704667c88d8125be33067cf (patch) | |
tree | 9c1ef457ce0da96b4d5dbe77cd56625f53b4ba89 /client/profile.lua | |
parent | 9b659149c7273a57a82c9be988a8a78c62bb23f4 (diff) |
camera stuff + vastly optimise hex drawing
Diffstat (limited to 'client/profile.lua')
-rw-r--r-- | client/profile.lua | 2 |
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 |