diff options
author | GeckoEidechse <gecko.eidechse+git@pm.me> | 2022-09-10 23:30:50 +0200 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2022-09-10 23:30:50 +0200 |
commit | b7273effece9e1ad46f18e843cd8a0e5f876cc64 (patch) | |
tree | 35d06cf4910d039ed1de984715d449b6de0490a9 /src-ui | |
parent | 54e5b393128f6df4c013ff0866349cce4291d7b5 (diff) | |
download | FlightCore-b7273effece9e1ad46f18e843cd8a0e5f876cc64.tar.gz FlightCore-b7273effece9e1ad46f18e843cd8a0e5f876cc64.zip |
Move launching Northstar to lib.rs source file
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 fb61ac4a..0a2c5401 100644 --- a/src-ui/src/main.ts +++ b/src-ui/src/main.ts @@ -152,7 +152,7 @@ document.addEventListener("DOMContentLoaded", async function () { game_path: globalState.gamepath, install_type: installTypeHolderEl.textContent } as GameInstall; - await invoke("launch_northstar", { gameInstall: game_install }) + await invoke("launch_northstar_caller", { gameInstall: game_install }) .then((message) => { console.log(message); omniButtonEl.textContent = `${button_launched_string} (v${globalState.installed_northstar_version})`; |