summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/registered_cache.h
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2020-07-20 16:28:44 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2020-07-29 12:50:30 +0200
commit2ec852dd9f38ab6376f78ade15b8c62d86ab518a (patch)
treea5f8b1449af99b731eebcb5dbb40750357031189 /src/core/file_sys/registered_cache.h
parentgame_list: Limit context menu options for homebrew (diff)
downloadyuzu-2ec852dd9f38ab6376f78ade15b8c62d86ab518a.tar
yuzu-2ec852dd9f38ab6376f78ade15b8c62d86ab518a.tar.gz
yuzu-2ec852dd9f38ab6376f78ade15b8c62d86ab518a.tar.bz2
yuzu-2ec852dd9f38ab6376f78ade15b8c62d86ab518a.tar.lz
yuzu-2ec852dd9f38ab6376f78ade15b8c62d86ab518a.tar.xz
yuzu-2ec852dd9f38ab6376f78ade15b8c62d86ab518a.tar.zst
yuzu-2ec852dd9f38ab6376f78ade15b8c62d86ab518a.zip
Diffstat (limited to '')
-rw-r--r--src/core/file_sys/registered_cache.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/file_sys/registered_cache.h b/src/core/file_sys/registered_cache.h
index 29cf0d40c..ec1d54f27 100644
--- a/src/core/file_sys/registered_cache.h
+++ b/src/core/file_sys/registered_cache.h
@@ -155,9 +155,6 @@ public:
std::optional<TitleType> title_type = {}, std::optional<ContentRecordType> record_type = {},
std::optional<u64> title_id = {}) const override;
- // Removes an existing entry based on title id
- bool RemoveExistingEntry(u64 title_id);
-
// Raw copies all the ncas from the xci/nsp to the csache. Does some quick checks to make sure
// there is a meta NCA and all of them are accessible.
InstallResult InstallEntry(const XCI& xci, bool overwrite_if_exists = false,
@@ -172,6 +169,9 @@ public:
InstallResult InstallEntry(const NCA& nca, TitleType type, bool overwrite_if_exists = false,
const VfsCopyFunction& copy = &VfsRawCopy);
+ // Removes an existing entry based on title id
+ bool RemoveExistingEntry(u64 title_id) const;
+
private:
template <typename T>
void IterateAllMetadata(std::vector<T>& out,