Remove macos wine support (it doesn't quite work)

This commit is contained in:
2025-07-23 16:30:38 -07:00
parent 6788e91f13
commit aad80d5feb
3 changed files with 3 additions and 5 deletions

View File

@@ -175,7 +175,7 @@ fn launch_game(app: AppHandle, name: String, executable: String, wine: bool) {
.show(|_| {});
return;
}
let result = if wine && (platform() == "linux" || platform() == "macos") {
let result = if wine && platform() == "linux" {
let wine_path_output = Command::new("which").arg("wine").output();
let wine_path = match wine_path_output {
Ok(output) if output.status.success() => {