diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2024-01-17 02:41:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-17 02:41:15 +0100 |
commit | 18a82df7e991ce64586bcc32afa184cbe7f9aa41 (patch) | |
tree | 2293307dbb8d2920a25e78a25219ded708a406b1 /src-vue | |
parent | 49eb3c92b1116b6d8c3d5dceb7b2deabc504803a (diff) | |
download | FlightCore-18a82df7e991ce64586bcc32afa184cbe7f9aa41.tar.gz FlightCore-18a82df7e991ce64586bcc32afa184cbe7f9aa41.zip |
refactor: Make launching via Steam an arg passed to backend (#753)
instead of a separate dedicated function
Diffstat (limited to 'src-vue')
-rw-r--r-- | src-vue/src/plugins/store.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-vue/src/plugins/store.ts b/src-vue/src/plugins/store.ts index 56bf37e9..a1a67e2b 100644 --- a/src-vue/src/plugins/store.ts +++ b/src-vue/src/plugins/store.ts @@ -241,7 +241,7 @@ export const store = createStore<FlightCoreStore>({ } }, async launchGameSteam(state: any, no_checks = false) { - await invoke("launch_northstar_steam", { gameInstall: state.game_install, bypassChecks: no_checks }) + await invoke("launch_northstar", { gameInstall: state.game_install, launchViaSteam: true, bypassChecks: no_checks }) .then((message) => { showNotification('Success'); }) |