From 8549094a86326206ab747eb484ce8de9aa8610f4 Mon Sep 17 00:00:00 2001 From: Robyn Dressler Date: Fri, 4 Oct 2024 10:18:24 -0500 Subject: [PATCH] Fixing format --- src/common/path_util.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/common/path_util.cpp b/src/common/path_util.cpp index a8422e90a..3e6434c84 100644 --- a/src/common/path_util.cpp +++ b/src/common/path_util.cpp @@ -100,8 +100,7 @@ static auto UserPaths = [] { // Check if the "user" directory exists in the current path: if (!std::filesystem::exists(user_dir)) { // If it doesn't exist, use the new hardcoded path: - user_dir = - std::filesystem::path(getenv("HOME")) / ".local" / "share" / "shadPS4"; + user_dir = std::filesystem::path(getenv("HOME")) / ".local" / "share" / "shadPS4"; } #else const auto user_dir = std::filesystem::current_path() / PORTABLE_DIR;