aboutsummaryrefslogtreecommitdiff
path: root/src-tauri/src/platform_specific
diff options
context:
space:
mode:
authorGeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com>2023-10-13 12:42:50 +0200
committerGitHub <noreply@github.com>2023-10-13 12:42:50 +0200
commit97d4773d5ee55cf6a9081475f2bc3011b23e1037 (patch)
treea22984a2b3bda1db4acd0e31971bcfb1ce06f7a9 /src-tauri/src/platform_specific
parent04c5ada00522f3058cd1825fcac466b207bc37f3 (diff)
downloadFlightCore-97d4773d5ee55cf6a9081475f2bc3011b23e1037.tar.gz
FlightCore-97d4773d5ee55cf6a9081475f2bc3011b23e1037.zip
refactor: Move repair/verify related funcs to mod (#622)
Moves functions related to game install path verification checks to dedicated module in an effort to clean up `main.rs`
Diffstat (limited to 'src-tauri/src/platform_specific')
-rw-r--r--src-tauri/src/platform_specific/windows.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-tauri/src/platform_specific/windows.rs b/src-tauri/src/platform_specific/windows.rs
index 899ab2cd..678e5be5 100644
--- a/src-tauri/src/platform_specific/windows.rs
+++ b/src-tauri/src/platform_specific/windows.rs
@@ -4,7 +4,7 @@ use anyhow::{anyhow, Result};
#[cfg(target_os = "windows")]
use winreg::{enums::HKEY_LOCAL_MACHINE, RegKey};
-use crate::check_is_valid_game_path;
+use crate::repair_and_verify::check_is_valid_game_path;
/// Gets Titanfall2 install location on Origin
pub fn origin_install_location_detection() -> Result<String, anyhow::Error> {