cleanup stale tests, profiling reports

This commit is contained in:
Michael Freno
2025-11-20 11:36:41 -05:00
parent 32009185e9
commit d0357672db
31 changed files with 994 additions and 446 deletions

View File

@@ -102,9 +102,9 @@ function Performance:stopTimer(name)
local startTime = self._timers[name]
if not startTime then
if self.logWarnings then
print(string.format("[Performance] Warning: Timer '%s' was not started", name))
end
-- Silently return nil if timer wasn't started
-- This can happen legitimately when Performance is toggled mid-frame
-- or when layout functions have early returns
return nil
end