diff options
| author | Kurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com> | 2026-09-06 11:15:48 -0400 |
|---|---|---|
| committer | Kurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com> | 2026-09-06 11:15:48 -0400 |
| commit | c7271f14fb6eaca08fa7570644856fb7de1ac194 (patch) | |
| tree | 03c2d39ea5c7a52d4c96ab38913f64d4d1921eb3 | |
| parent | a387b06738177ec0b1cbf8d0d8f5e1c43212f953 (diff) | |
| download | decky-lsfg-vk-c7271f14fb6eaca08fa7570644856fb7de1ac194.tar.gz decky-lsfg-vk-c7271f14fb6eaca08fa7570644856fb7de1ac194.zip | |
fix: surface Lossless Scaling branch requirement
| -rw-r--r-- | src/hooks/useLsfgHooks.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hooks/useLsfgHooks.ts b/src/hooks/useLsfgHooks.ts index d9bbe3e..b4ae7d0 100644 --- a/src/hooks/useLsfgHooks.ts +++ b/src/hooks/useLsfgHooks.ts @@ -53,7 +53,7 @@ export function useDllDetection() { if (result.detected) { setDllDetectionStatus("Lossless Scaling Installed"); } else { - setDllDetectionStatus("Lossless Scaling Not Installed"); + setDllDetectionStatus(result.message || "Lossless Scaling Not Installed"); } } catch (error) { setDllDetectionStatus("Lossless Scaling Not Installed"); |
