don't use autopause value for warning on triangles

This commit is contained in:
Stanley Dimant
2024-09-10 14:10:39 +02:00
parent 5ce0212bb4
commit 279c51d9aa

View File

@@ -79,7 +79,7 @@ public class PlayerPerformanceService
if (exceedsTris && !exceedsVram) if (exceedsTris && !exceedsVram)
{ {
warningText = $"Player {pairHandler.Pair.PlayerName} exceeds your configured triangle warning threshold (" + warningText = $"Player {pairHandler.Pair.PlayerName} exceeds your configured triangle warning threshold (" +
$"{triUsage}/{config.TrisAutoPauseThresholdThousands * 1000} triangles)."; $"{triUsage}/{config.TrisWarningThresholdThousands * 1000} triangles).";
} }
else if (!exceedsTris) else if (!exceedsTris)
{ {