From 78ed0c55f25375d1f042005d6cb63644e6abbc50 Mon Sep 17 00:00:00 2001 From: Philip Date: Sun, 2 Jan 2022 11:02:02 +0100 Subject: [PATCH] Add create_symlinks to uplay --- src/uplay/platform.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/uplay/platform.rs b/src/uplay/platform.rs index 7988202..be58521 100644 --- a/src/uplay/platform.rs +++ b/src/uplay/platform.rs @@ -37,6 +37,11 @@ impl Platform> for Uplay { get_games_from_winreg() } } + + #[cfg(target_os = "linux")] + fn create_symlinks(&self) -> bool { + false + } } #[cfg(target_os = "windows")]