diff options
-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 c4a69554..0562aa0a 100644 --- a/src-ui/src/main.ts +++ b/src-ui/src/main.ts @@ -54,7 +54,7 @@ document.addEventListener("DOMContentLoaded", async function () { // TODO Verify if valid Titanfall2 install location - let is_valid_titanfall2_install = await invoke("verify_install_location", { game_path: selected }) as boolean; + let is_valid_titanfall2_install = await invoke("verify_install_location", { gamePath: selected }) as boolean; if (is_valid_titanfall2_install) { globalState.gamepath = selected; |