diff options
author | GeckoEidechse <gecko.eidechse+git@pm.me> | 2022-09-23 22:45:06 +0200 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2022-09-23 22:45:06 +0200 |
commit | 468d843b2eaf0f9f3de00177a79420313c9fc3ed (patch) | |
tree | 2901a2ffd94c2b87873597885c2aa24ea0fdfb0f /src-tauri/src/lib.rs | |
parent | 712c3fa816cc691f53de165c7a64d5e626da328c (diff) | |
download | FlightCore-468d843b2eaf0f9f3de00177a79420313c9fc3ed.tar.gz FlightCore-468d843b2eaf0f9f3de00177a79420313c9fc3ed.zip |
Rename function
Diffstat (limited to 'src-tauri/src/lib.rs')
-rw-r--r-- | src-tauri/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs index ed438ab9..d0bc9be2 100644 --- a/src-tauri/src/lib.rs +++ b/src-tauri/src/lib.rs @@ -63,7 +63,7 @@ pub fn find_game_install_location() -> Result<GameInstall, anyhow::Error> { // (On Windows only) try parsing Windows registry for Origin install path #[cfg(target_os = "windows")] - match windows::windows_origin_install_location_detection() { + match windows::origin_install_location_detection() { Ok(game_path) => { let game_install = GameInstall { game_path: game_path, |