diff --git a/src/common/path_util.cpp b/src/common/path_util.cpp index 4e85e140e..103f17d29 100644 --- a/src/common/path_util.cpp +++ b/src/common/path_util.cpp @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Copyright 2026 shadPS4 Emulator Project +// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #include @@ -127,7 +127,6 @@ static auto UserPaths = [] { create_path(PathType::MetaDataDir, user_dir / METADATA_DIR); create_path(PathType::CustomTrophy, user_dir / CUSTOM_TROPHY); create_path(PathType::CustomConfigs, user_dir / CUSTOM_CONFIGS); - create_path(PathType::HomeDir, user_dir / HOME_DIR); create_path(PathType::CacheDir, user_dir / CACHE_DIR); create_path(PathType::FontsDir, user_dir / FONTS_DIR); create_path(PathType::HomeDir, user_dir / HOME_DIR); diff --git a/src/common/path_util.h b/src/common/path_util.h index 71e1bd931..485c72270 100644 --- a/src/common/path_util.h +++ b/src/common/path_util.h @@ -24,7 +24,6 @@ enum class PathType { MetaDataDir, // Where game metadata (e.g. trophies and menu backgrounds) is stored. CustomTrophy, // Where custom files for trophies are stored. CustomConfigs, // Where custom files for different games are stored. - HomeDir, // PS4 home directory CacheDir, // Where pipeline and shader cache is stored. FontsDir, // Where dumped system fonts are stored. HomeDir, // PS4 home directory @@ -46,7 +45,6 @@ constexpr auto PATCHES_DIR = "patches"; constexpr auto METADATA_DIR = "game_data"; constexpr auto CUSTOM_TROPHY = "custom_trophy"; constexpr auto CUSTOM_CONFIGS = "custom_configs"; -constexpr auto HOME_DIR = "home"; constexpr auto CACHE_DIR = "cache"; constexpr auto FONTS_DIR = "fonts"; constexpr auto HOME_DIR = "home"; diff --git a/src/core/libraries/usbd/usbd.cpp b/src/core/libraries/usbd/usbd.cpp index add16b619..52d6aec66 100644 --- a/src/core/libraries/usbd/usbd.cpp +++ b/src/core/libraries/usbd/usbd.cpp @@ -2,7 +2,6 @@ // SPDX-License-Identifier: GPL-2.0-or-later #include "common/logging/log.h" -#include "core/emulator_settings.h" #include "core/libraries/error_codes.h" #include "core/libraries/libs.h" #include "usbd.h" diff --git a/src/video_core/buffer_cache/region_manager.h b/src/video_core/buffer_cache/region_manager.h index 229ee10ea..a760dd596 100644 --- a/src/video_core/buffer_cache/region_manager.h +++ b/src/video_core/buffer_cache/region_manager.h @@ -14,7 +14,6 @@ #endif #include "common/debug.h" #include "common/types.h" -#include "core/emulator_settings.h" #include "video_core/buffer_cache/region_definitions.h" #include "video_core/page_manager.h" diff --git a/src/video_core/cache_storage.cpp b/src/video_core/cache_storage.cpp index 1899a8736..8d6abf9b5 100644 --- a/src/video_core/cache_storage.cpp +++ b/src/video_core/cache_storage.cpp @@ -7,7 +7,6 @@ #include "common/thread.h" #include "core/emulator_settings.h" -#include "core/emulator_settings.h" #include "video_core/cache_storage.h" #include "video_core/renderer_vulkan/vk_instance.h" #include "video_core/renderer_vulkan/vk_pipeline_cache.h"