From 45d29dd5a7696fceb94c48fc450c168275ec5b36 Mon Sep 17 00:00:00 2001 From: ferkans-amir Date: Tue, 28 Jul 2026 10:36:32 +0200 Subject: [PATCH] fix(winetricks): warn on d3d DirectX DLL override winetricks verbs --- Sources/WinetricksCatalog.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/WinetricksCatalog.swift b/Sources/WinetricksCatalog.swift index f462a87..5e44b08 100644 --- a/Sources/WinetricksCatalog.swift +++ b/Sources/WinetricksCatalog.swift @@ -64,8 +64,8 @@ enum WinetricksRisk { if v == "mf" || v == "mfplat" { return L("This replaces the Media Foundation DLLs, which is known to stop Steam's web helper from drawing — Steam opens as a black window afterwards.") } - if v.hasPrefix("dxvk") || v.hasPrefix("galliumnine") || v.hasPrefix("vkd3d") { - return L("This overwrites d3d11, dxgi and d3d10core in this bottle — the same files MacNdCheese sets up for Steam and for game rendering. Steam or your games may stop rendering until the bottle is set up again.") + if v.hasPrefix("dxvk") || v.hasPrefix("galliumnine") || v.hasPrefix("vkd3d") || v.hasPrefix("d3d") { + return L("This overwrites DirectX/D3D DLLs in this bottle — the same files MacNdCheese sets up for graphics rendering. Games in this bottle may stop rendering until the bottle is set up again.") } return nil }