mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2026-08-15 13:04:36 +00:00
refactor: Simplify MainTuiView by removing architecture check for default return value
This commit is contained in:
parent
b083336bf6
commit
7405aad68f
1 changed files with 1 additions and 3 deletions
|
|
@ -26,9 +26,7 @@ namespace MinecraftClient.Tui
|
|||
if (configured > 0)
|
||||
return configured;
|
||||
|
||||
bool isArm = RuntimeInformation.ProcessArchitecture
|
||||
is Architecture.Arm or Architecture.Arm64;
|
||||
return isArm ? 500 : 3000;
|
||||
return 3000;
|
||||
}
|
||||
|
||||
private readonly ObservableCollection<string> _logLines = new();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue