summaryrefslogtreecommitdiff
path: root/src/hooks
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2025-07-15 22:37:45 -0400
committerGitHub <noreply@github.com>2025-07-15 22:37:45 -0400
commit80247f76332d2704e21361192b774f31b1520e57 (patch)
tree6dacd61f372610c8734839343ac326c61554488e /src/hooks
parent5fc11c1b263908e925014d86eb10649e7208b35b (diff)
parent2ad4b2a8d97b29710992e6859f3f50f6883649aa (diff)
downloaddecky-lsfg-vk-80247f76332d2704e21361192b774f31b1520e57.tar.gz
decky-lsfg-vk-80247f76332d2704e21361192b774f31b1520e57.zip
Merge pull request #25 from xXJSONDeruloXx/clipboard-workaround
Clipboard workaround
Diffstat (limited to 'src/hooks')
-rw-r--r--src/hooks/useLsfgHooks.ts12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/hooks/useLsfgHooks.ts b/src/hooks/useLsfgHooks.ts
index c0bd8e8..ad04305 100644
--- a/src/hooks/useLsfgHooks.ts
+++ b/src/hooks/useLsfgHooks.ts
@@ -17,13 +17,13 @@ export function useInstallationStatus() {
const status = await checkLsfgVkInstalled();
setIsInstalled(status.installed);
if (status.installed) {
- setInstallationStatus("lsfg-vk is installed");
+ setInstallationStatus("lsfg-vk Installed");
} else {
- setInstallationStatus("lsfg-vk is not installed");
+ setInstallationStatus("lsfg-vk Not Installed");
}
return status.installed;
} catch (error) {
- setInstallationStatus("Error checking installation status");
+ setInstallationStatus("lsfg-vk Not Installed");
return false;
}
};
@@ -50,12 +50,12 @@ export function useDllDetection() {
const result = await checkLosslessScalingDll();
setDllDetected(result.detected);
if (result.detected) {
- setDllDetectionStatus(`Lossless Scaling App detected (${result.source})`);
+ setDllDetectionStatus("Lossless Scaling Installed");
} else {
- setDllDetectionStatus(result.message || "Lossless Scaling App not detected");
+ setDllDetectionStatus("Lossless Scaling Not Installed");
}
} catch (error) {
- setDllDetectionStatus("Error checking Lossless Scaling App");
+ setDllDetectionStatus("Lossless Scaling Not Installed");
}
};