레딧에서 보니까 값 아래같이 수정하고 게임하라길래 유효한건진 모르겠네

memory_size=104857600

num_refills_in_voice=4

num_reserved_threads=1

target_buffering_length=800


일단 써보려는데, 패치할 때마다 수정하기 귀찮아서 배치 파일 만들어봤음

대충 헬다 경로에 setting.cmd 파일 만들어서 넣어놓고 실행하면 되긴함

pushd %~dp0\data

powershell -command "$file = 'settings.ini'; $tmp = 'settings.tmp'; $config = @{memory_size=104857600; num_refills_in_voice=4; num_reserved_threads=1; target_buffering_length=800}; $content = get-content $file | foreach-object { if ($_ -match '^\s*([^=]+?)\s*=\s*(.*)$') { $k = $matches[1].trim(); if ($config.containskey($k)) { $_ -replace '^(\s*[^=]+?\s*=\s*).*$', \"`${1}$($config[$k])\" } else { $_ } } else { $_ } } | set-content $tmp -encoding utf8; move-item $tmp $file -force;"