diff options
Diffstat (limited to 'src-ui')
-rw-r--r-- | src-ui/src/main.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-ui/src/main.ts b/src-ui/src/main.ts index c6a19170..eccd1919 100644 --- a/src-ui/src/main.ts +++ b/src-ui/src/main.ts @@ -56,7 +56,7 @@ document.addEventListener("DOMContentLoaded", async function () { versionNumberHolderEl.textContent = version_number_string; // Get install location - let install_location = await invoke("find_game_install_location") as string; + let install_location = await invoke("find_game_install_location_caller") as string; // Change omni-button content based on whether game install was found if (install_location && install_location.length > 0) { omniButtonEl.textContent = "Install"; |