更改profile开启方式,和计算器组合功能键不冲突了

This commit is contained in:
MrZ626
2020-10-24 20:07:30 +08:00
parent a7435eb844
commit 9336534566
2 changed files with 20 additions and 17 deletions

View File

@@ -166,6 +166,20 @@ function profile.report(n)
return '\n'..sz..row
end
local switch=false
function profile.switch()
if switch then
profile.stop()
love.system.setClipboardText(PROFILE.report())
PROFILE.reset()
LOG.print("profile report copied!")
else
PROFILE.start()
LOG.print("profile start!")
end
switch=not switch
end
-- store all internal profiler functions
for _, v in next,profile do
if type(v) == "function" then