diff options
Diffstat (limited to 'src-tauri/src/northstar/mod.rs')
-rw-r--r-- | src-tauri/src/northstar/mod.rs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src-tauri/src/northstar/mod.rs b/src-tauri/src/northstar/mod.rs index e707849e..ea4f4cde 100644 --- a/src-tauri/src/northstar/mod.rs +++ b/src-tauri/src/northstar/mod.rs @@ -154,10 +154,16 @@ pub fn get_northstar_version_number(game_install: GameInstall) -> Result<String, #[tauri::command] pub fn launch_northstar( game_install: GameInstall, + launch_via_steam: Option<bool>, bypass_checks: Option<bool>, ) -> Result<String, String> { dbg!(game_install.clone()); + let launch_via_steam = launch_via_steam.unwrap_or(false); + if launch_via_steam { + return launch_northstar_steam(game_install, bypass_checks); + } + let host_os = get_host_os(); // Explicitly fail early certain (currently) unsupported install setups @@ -222,7 +228,6 @@ pub fn launch_northstar( } /// Prepare Northstar and Launch through Steam using the Browser Protocol -#[tauri::command] pub fn launch_northstar_steam( game_install: GameInstall, _bypass_checks: Option<bool>, |