Merge branch 'profiler_be_gone' into 'master'

Disable Lua profiler by default

See merge request OpenMW/openmw!5097
This commit is contained in:
Alexei Kotov
2026-04-04 02:07:51 +03:00
3 changed files with 3 additions and 2 deletions
@@ -24,7 +24,7 @@ Lua Settings
:title: lua profiler
:type: boolean
:range: true, false
:default: true
:default: false
Enables Lua profiler.
+1 -1
View File
@@ -1182,7 +1182,7 @@ lua debug = false
lua num threads = 1
# Enable Lua profiler
lua profiler = true
lua profiler = false
# No ownership tracking for allocations below or equal this size.
small alloc max size = 1024
+1
View File
@@ -80,6 +80,7 @@ def run_test(test_name):
"smooth animation transitions = true\n"
"[Lua]\n"
f"memory limit = {1024 * 1024 * 256}\n"
"lua profiler = true\n"
)
stdout_lines = list()
test_success = True