mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-07-04 05:55:47 -07:00
Combine duplicate profiler2 config sections
default.cfg contained two sections named "profiler2". That's something which might be confusing and is not supported by all implementations of ini file parsers. To remove that ambiguity, this combines these two sections into one.
This commit is contained in:
parent
1aea9f2d32
commit
6c85951d53
1 changed files with 4 additions and 6 deletions
|
|
@ -186,8 +186,10 @@ menu = 60 ; Throttle FPS in menus only.
|
|||
|
||||
[profiler2]
|
||||
server = "127.0.0.1"
|
||||
server.port = "8000" ; Use a free port on your machine.
|
||||
server.threads = "6" ; Enough for the browser's parallel connection limit
|
||||
server.port = "8000" ; Use a free port on your machine.
|
||||
server.threads = "6" ; Enough for the browser's parallel connection limit
|
||||
autoenable = false ; Enable HTTP server output at startup (default off for security/performance)
|
||||
gpu.enable = true ; Allow GPU timing mode when available.
|
||||
|
||||
[console]
|
||||
font = "mono-10"
|
||||
|
|
@ -561,10 +563,6 @@ fps = "false" ; Show frames per second in top right corner
|
|||
realtime = "false" ; Show current system time in top right corner
|
||||
netwarnings = "true" ; Show warnings if the network connection is bad
|
||||
|
||||
[profiler2]
|
||||
autoenable = false ; Enable HTTP server output at startup (default off for security/performance)
|
||||
gpu.enable = true ; Allow GPU timing mode when available.
|
||||
|
||||
[rlinterface]
|
||||
address = "127.0.0.1:6000"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue