From 089c858feb1b6f4756bc241b14edcb2ad55dc0a0 Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Fri, 3 Apr 2026 09:55:41 -0400 Subject: fix: always emit DLL= in patch command, even for default dxgi.dll --- src/components/ClipboardCommands.tsx | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/components/ClipboardCommands.tsx b/src/components/ClipboardCommands.tsx index b8cf6bf..7bbd12d 100644 --- a/src/components/ClipboardCommands.tsx +++ b/src/components/ClipboardCommands.tsx @@ -1,5 +1,4 @@ import { SmartClipboardButton } from "./SmartClipboardButton"; -import { DEFAULT_PROXY_DLL } from "../utils/constants"; interface ClipboardCommandsProps { pathExists: boolean | null; @@ -9,15 +8,10 @@ interface ClipboardCommandsProps { export function ClipboardCommands({ pathExists, dllName }: ClipboardCommandsProps) { if (pathExists !== true) return null; - const launchCommand = - dllName === DEFAULT_PROXY_DLL - ? "~/fgmod/fgmod %command%" - : `DLL=${dllName} ~/fgmod/fgmod %command%`; - return ( <> -- cgit v1.2.3