This commit is contained in:
何冠峰
2025-09-09 19:06:17 +08:00
parent 19f1d67a61
commit 90d3a53bc3
2 changed files with 5 additions and 4 deletions

View File

@@ -172,7 +172,7 @@ namespace YooAsset
else if (name == FileSystemParametersDefine.FILE_VERIFY_MAX_CONCURRENCY)
{
int convertValue = Convert.ToInt32(value);
FileVerifyMaxConcurrency = Math.Clamp(convertValue, 1, int.MaxValue);
FileVerifyMaxConcurrency = Mathf.Clamp(convertValue, 1, int.MaxValue);
}
else if (name == FileSystemParametersDefine.APPEND_FILE_EXTENSION)
{