diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-05-09 19:22:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-09 19:22:08 +0200 |
commit | a01dc91a7e5cb515c33dc08a2f41ae9d91310cc7 (patch) | |
tree | bb8b25d437d12aa768f46b7d6be1d932c21c7ab9 /src-tauri/src/main.rs | |
parent | f216d4dbe521f324b514d0485425c4a1a1332588 (diff) | |
download | FlightCore-a01dc91a7e5cb515c33dc08a2f41ae9d91310cc7.tar.gz FlightCore-a01dc91a7e5cb515c33dc08a2f41ae9d91310cc7.zip |
refactor: Move `launch_northstar` to own module (#338)
Part of #329
Diffstat (limited to 'src-tauri/src/main.rs')
-rw-r--r-- | src-tauri/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index 459e47e5..d3b58b67 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -368,7 +368,7 @@ async fn launch_northstar_caller( game_install: GameInstall, bypass_checks: Option<bool>, ) -> Result<String, String> { - launch_northstar(&game_install, bypass_checks) + northstar::launch_northstar(&game_install, bypass_checks) } /// Launches Northstar |