Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions umu/umu_proton.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ class ProtonVersion(Enum):
UMUScout = "umu-scout"
UMUSoldier = "umu-soldier"
UMUSniper = "umu-sniper"
UMUSniper_arm64 = "umu-sniper-arm64"
UMUSteamRT4 = "umu-steamrt4"
UMUSteamRT4_arm64 = "umu-steamrt4-arm64"
# Special case, non-invokable
Expand Down Expand Up @@ -123,7 +122,6 @@ def _get_umu_runtime_tool(env: dict[str, str], name: str) -> dict[str, str] | No
in {
ProtonVersion.UMUSoldier.value,
ProtonVersion.UMUSniper.value,
ProtonVersion.UMUSniper_arm64.value,
ProtonVersion.UMUSteamRT4.value,
ProtonVersion.UMUSteamRT4_arm64.value,
ProtonVersion.UMUHost.value,
Expand Down
1 change: 0 additions & 1 deletion umu/umu_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -767,7 +767,6 @@ def resolve_runtime() -> UmuRuntime:
ProtonVersion.UMUSniper.value, ProtonVersion.UMULatest.value,
ProtonVersion.GEProton.value, ProtonVersion.GELatest.value,
},
RUNTIME_NAMES["sniper-arm64"]: { ProtonVersion.UMUSniper_arm64.value },
RUNTIME_NAMES["soldier"]: { ProtonVersion.UMUScout.value, ProtonVersion.UMUSoldier.value },
}

Expand Down
1 change: 0 additions & 1 deletion umu/umu_runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,6 @@ def as_tuple(self) -> RuntimeVersion:
RUNTIME_VERSIONS.update({
"1391110": UmuRuntime("soldier", "steamrt2", "1391110", "x86_64"),
"1628350": UmuRuntime("sniper", "steamrt3", "1628350", "x86_64"),
"3810310": UmuRuntime("sniper-arm64", "steamrt3-arm64", "3810310", "aarch64"),
"4183110": UmuRuntime("steamrt4", "steamrt4", "4183110", "x86_64"),
"4185400": UmuRuntime("steamrt4-arm64", "steamrt4-arm64", "4185400", "aarch64"),
})
Expand Down
Loading