aboutsummaryrefslogtreecommitdiff
path: root/src/core/file_sys/patch_manager.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-09-14 19:04:49 -0400
committerLioncash <mathew1800@gmail.com>2020-09-14 19:04:51 -0400
commit637ab14ae6e42d656ad0a920487014e11461d76a (patch)
treef918684b10b7c025c3442b69cc0c397d2af8e493 /src/core/file_sys/patch_manager.h
parent0bac7b6a95f553fd33f3ec74e0c7f00c8bd17971 (diff)
patch_manager: Make a few functions internally linked
These functions are only used within this translation unit, so we can make them internally linked.
Diffstat (limited to 'src/core/file_sys/patch_manager.h')
-rw-r--r--src/core/file_sys/patch_manager.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/core/file_sys/patch_manager.h b/src/core/file_sys/patch_manager.h
index 532f4995f..92a7c6e04 100644
--- a/src/core/file_sys/patch_manager.h
+++ b/src/core/file_sys/patch_manager.h
@@ -22,18 +22,6 @@ namespace FileSys {
class NCA;
class NACP;
-enum class TitleVersionFormat : u8 {
- ThreeElements, ///< vX.Y.Z
- FourElements, ///< vX.Y.Z.W
-};
-
-std::string FormatTitleVersion(u32 version,
- TitleVersionFormat format = TitleVersionFormat::ThreeElements);
-
-// Returns a directory with name matching name case-insensitive. Returns nullptr if directory
-// doesn't have a directory with name.
-VirtualDir FindSubdirectoryCaseless(VirtualDir dir, std::string_view name);
-
// A centralized class to manage patches to games.
class PatchManager {
public: